(self)
| 1277 | self.webAttack() |
| 1278 | |
| 1279 | def web2attack(self): |
| 1280 | self.clear_scr() |
| 1281 | os.system("echo \"Web hacking framework with tools, exploits by python \n[!]https://github.com/santatic/web2attack \"| boxes -d boy | lolcat") |
| 1282 | choice = input("[1]Install [2]Run [99]Back >> ") |
| 1283 | |
| 1284 | self.check_input(choice, self.web2attack, ['1', '2', '99']) |
| 1285 | |
| 1286 | if choice == "1": |
| 1287 | os.system("sudo git clone https://github.com/santatic/web2attack.git") |
| 1288 | self.web2attack() |
| 1289 | |
| 1290 | if choice == "2": |
| 1291 | os.system("cd web2attack && sudo bash w2aconsole") |
| 1292 | self.web2attack() |
| 1293 | |
| 1294 | if choice == "99": |
| 1295 | self.webAttack() |
| 1296 | |
| 1297 | def skipfish(self): |
| 1298 | self.clear_scr() |
nothing calls this directly
no test coverage detected