(self)
| 278 | self.info() |
| 279 | |
| 280 | def redhawk(self): |
| 281 | self.clear_scr() |
| 282 | os.system("echo \"All in one tool for Information Gathering and Vulnerability Scanning. \n [!]https://github.com/Tuhinshubhra/RED_HAWK \n\n [!]Please Use command [FIX] After Running Tool first time \" | boxes -d boy | lolcat") |
| 283 | choice = input("[1]Install [2]Run [99]Back >> ") |
| 284 | |
| 285 | self.check_input(choice, self.redhawk, ['1', '2', '99']) |
| 286 | |
| 287 | if choice == "1": |
| 288 | os.system("git clone https://github.com/Tuhinshubhra/RED_HAWK") |
| 289 | self.redhawk() |
| 290 | |
| 291 | if choice == "2": |
| 292 | os.system("cd RED_HAWK;php rhawk.php") |
| 293 | self.redhawk() |
| 294 | |
| 295 | if choice == "99": |
| 296 | self.info() |
| 297 | |
| 298 | def reconspider(self): |
| 299 | self.clear_scr() |
nothing calls this directly
no test coverage detected