(self, command: str)
| 173 | @throw CommandException if the command doesn't exist. |
| 174 | """ |
| 175 | def process_command(self, command: str): |
| 176 | if self.exploit_status(): |
| 177 | try: |
| 178 | self.exploit.process_command(command) |
| 179 | except ExitException: |
| 180 | self.exploit = None |
| 181 | else: |
| 182 | super().process_command(command) |
nothing calls this directly
no test coverage detected