(self)
| 385 | self.info() |
| 386 | |
| 387 | def secretfinder(self): |
| 388 | self.clear_scr() |
| 389 | os.system("echo \"SecretFinder - A python script for find sensitive data \nlike apikeys, accesstoken, authorizations, jwt,..etc \n and search anything on javascript files.\n\n Usage: python SecretFinder.py -h \n\t [*]https://github.com/m4ll0k/SecretFinder \"|boxes -d boy | lolcat") |
| 390 | choice = input("[1]Install [99]Back >> ") |
| 391 | |
| 392 | self.check_input(choice, self.secretfinder, ['1', '99']) |
| 393 | |
| 394 | if choice == "1": |
| 395 | os.system("git clone https://github.com/m4ll0k/SecretFinder.git secretfinder") |
| 396 | os.system("cd secretfinder; sudo pip3 install -r requirements.txt") |
| 397 | self.secretfinder() |
| 398 | |
| 399 | if choice == "99": |
| 400 | self.info() |
| 401 | |
| 402 | def shodantool(self): |
| 403 | self.clear_scr() |
nothing calls this directly
no test coverage detected