(self)
| 347 | self.info() |
| 348 | |
| 349 | def recondog(self): |
| 350 | self.clear_scr() |
| 351 | os.system("echo \"ReconDog Information Gathering Suite \n[!]https://github.com/s0md3v/ReconDog \"|boxes -d boy | lolcat") |
| 352 | choice = input("[1]Install [2]Run [99]Back >> ") |
| 353 | |
| 354 | self.check_input(choice, self.recondog, ['1', '2', '99']) |
| 355 | |
| 356 | if choice == "1": |
| 357 | os.system("git clone https://github.com/s0md3v/ReconDog.git ") |
| 358 | self.recondog() |
| 359 | |
| 360 | if choice == "2": |
| 361 | os.system("cd ReconDog;sudo python dog") |
| 362 | self.recondog() |
| 363 | |
| 364 | if choice == "99": |
| 365 | self.info() |
| 366 | |
| 367 | def striker(self): |
| 368 | self.clear_scr() |
nothing calls this directly
no test coverage detected