MCPcopy
hub / github.com/Z4nzu/hackingtool / info

Method info

hackingtool.py:170–215  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

168
169##################OPTION[1]########################
170 def info(self):
171 self.clear_scr()
172 os.system("figlet -f standard -c Information Gathering Tools | lolcat")
173
174 print("""
175 [1] Nmap
176 [2] Dracnmap
177 [3] Port Scanning
178 [4] Host To IP
179 [5] Xerosploit
180 [6] RED HAWK (All In One Scanning)
181 [7] ReconSpider(For All Scaning)
182 [8] IsItDown (Check Website Down/Up)
183 [9] Infoga - Email OSINT
184 [10] ReconDog
185 [11] Striker
186 [12] SecretFinder (like API & etc)
187 [13] Find Info Using Shodan
188 [14] Port Scanner
189 [15] Breacher
190 [99] Back To Main Menu
191 """)
192
193 functions_info = {
194 '1':self.nmap,
195 '2':self.dracnmap,
196 '3':self.ports,
197 '4':self.h2ip,
198 '5':self.xerosploit,
199 '6':self.redhawk,
200 '7':self.reconspider,
201 '8':self.isitdown,
202 '9':self.infogaemail,
203 '10':self.recondog,
204 '11':self.striker,
205 '12':self.secretfinder,
206 '13':self.shodantool,
207 '14':self.portscanner,
208 '15':self.breacher,
209 '99':self.menu
210 }
211
212 choice = input("Z4nzu =>> ")
213 self.check_input(choice, self.info, functions_info.keys())
214
215 functions_info[choice]()
216
217 def nmap(self):
218 self.clear_scr()

Callers 15

nmapMethod · 0.95
dracnmapMethod · 0.95
portsMethod · 0.95
h2ipMethod · 0.95
xerosploitMethod · 0.95
redhawkMethod · 0.95
reconspiderMethod · 0.95
isitdownMethod · 0.95
infogaemailMethod · 0.95
recondogMethod · 0.95
strikerMethod · 0.95
secretfinderMethod · 0.95

Calls 2

clear_scrMethod · 0.95
check_inputMethod · 0.95

Tested by

no test coverage detected