(self)
| 1330 | self.webAttack() |
| 1331 | |
| 1332 | def checkurl(self): |
| 1333 | self.clear_scr() |
| 1334 | os.system("echo \" Detect evil urls that uses IDN Homograph Attack.\n\t[!]python3 checkURL.py --url google.com \" | boxes -d boy | lolcat") |
| 1335 | choice = input("[1]Install [2]Run [99]Back >> ") |
| 1336 | |
| 1337 | self.check_input(choice, self.checkurl, ['1', '2', '99']) |
| 1338 | |
| 1339 | if choice == "1": |
| 1340 | os.system("sudo git clone https://github.com/UndeadSec/checkURL.git") |
| 1341 | self.checkurl() |
| 1342 | |
| 1343 | if choice == "2": |
| 1344 | os.system("cd checkURL && python3 checkURL.py --help") |
| 1345 | self.checkurl() |
| 1346 | |
| 1347 | if choice == "99": |
| 1348 | self.webAttack() |
| 1349 | |
| 1350 | def blazy(self): |
| 1351 | self.clear_scr() |
nothing calls this directly
no test coverage detected