(self)
| 39 | function() |
| 40 | |
| 41 | def menu(self): |
| 42 | self.clear_scr() |
| 43 | print(self.logo + """\033[0m |
| 44 | \033[97m |
| 45 | [00] AnonSurf |
| 46 | [01] Information Gathering |
| 47 | [02] Wordlist Generator |
| 48 | [03] Wireless Attack |
| 49 | [04] SQL Injection Tools |
| 50 | [05] Phishing Attack |
| 51 | [06] Web Attack Tool |
| 52 | [07] Post exploitation |
| 53 | [08] Forensic Tools |
| 54 | [09] Payload Creator |
| 55 | [10] Exploit Frameworks |
| 56 | [11] Reverse Engineering |
| 57 | [12] Ddos Attack Tools |
| 58 | [13] Remote Administartor Tools |
| 59 | [14] XSS Attack Tools |
| 60 | [15] Steganography |
| 61 | [16] More Tools |
| 62 | [17] Update or Uninstall | Hackingtool |
| 63 | [99] Exit |
| 64 | """) |
| 65 | |
| 66 | functions_menu = { |
| 67 | '00':self.anonsurf, |
| 68 | '01':self.info, |
| 69 | '02':self.passwd, |
| 70 | '03':self.wire, |
| 71 | '04':self.sqltool, |
| 72 | '05':self.phishattack, |
| 73 | '06':self.webAttack, |
| 74 | '07':self.postexp, |
| 75 | '08':self.forensic, |
| 76 | '09':self.payloads, |
| 77 | '10':self.routexp, |
| 78 | '11':self.reversetool, |
| 79 | '12':self.ddos, |
| 80 | '13':self.rattools, |
| 81 | '14':self.xsstools, |
| 82 | '15':self.steganography, |
| 83 | '16':self.others, |
| 84 | '17':self.update, |
| 85 | '99':self.exit_app |
| 86 | } |
| 87 | |
| 88 | choice = input("Z4nzu =>> ") |
| 89 | |
| 90 | if len(choice) == 1: |
| 91 | choice = '0' + choice |
| 92 | |
| 93 | self.check_input(choice, self.menu, functions_menu.keys()) |
| 94 | |
| 95 | functions_menu[choice]() |
| 96 | |
| 97 | def clear_scr(self): |
| 98 | if system() == 'Linux': |
no test coverage detected