(self)
| 365 | self.info() |
| 366 | |
| 367 | def striker(self): |
| 368 | self.clear_scr() |
| 369 | os.system("echo \"Recon & Vulnerability Scanning Suite [!]https://github.com/s0md3v/Striker \"|boxes -d boy | lolcat") |
| 370 | choice = input("[1]Install [2]Run [99]Back >> ") |
| 371 | |
| 372 | self.check_input(choice, self.striker, ['1', '2', '99']) |
| 373 | |
| 374 | if choice == "1": |
| 375 | os.system("git clone https://github.com/s0md3v/Striker.git") |
| 376 | os.system("cd Striker && pip3 install -r requirements.txt") |
| 377 | self.striker() |
| 378 | |
| 379 | if choice == "2": |
| 380 | site = input("Enter Site Name (example.com) >> ") |
| 381 | os.system(f"cd Striker && sudo python3 striker.py {site}") |
| 382 | self.striker() |
| 383 | |
| 384 | if choice == "99": |
| 385 | self.info() |
| 386 | |
| 387 | def secretfinder(self): |
| 388 | self.clear_scr() |
nothing calls this directly
no test coverage detected