(self)
| 259 | self.info() |
| 260 | |
| 261 | def xerosploit(self): |
| 262 | self.clear_scr() |
| 263 | os.system("echo \"Xerosploit is a penetration testing toolkit whose goal is to perform \n man-in-th-middle attacks for testing purposes\"|boxes -d boy | lolcat") |
| 264 | choice = input("[1]Install [2]Run [99]Back >> ") |
| 265 | |
| 266 | self.check_input(choice, self.xerosploit, ['1', '2', '99']) |
| 267 | |
| 268 | if choice == "1": |
| 269 | os.system("git clone https://github.com/LionSec/xerosploit") |
| 270 | os.system("cd xerosploit && sudo python install.py") |
| 271 | self.xerosploit() |
| 272 | |
| 273 | if choice == "2": |
| 274 | os.system("sudo xerosploit") |
| 275 | self.xerosploit() |
| 276 | |
| 277 | if choice == "99": |
| 278 | self.info() |
| 279 | |
| 280 | def redhawk(self): |
| 281 | self.clear_scr() |
nothing calls this directly
no test coverage detected