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

Method webAttack

hackingtool.py:1229–1258  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1227
1228 ### Web Attack Function
1229 def webAttack(self):
1230 self.clear_scr()
1231 os.system("figlet 'Web Attack Tools' -f standard -c | lolcat")
1232
1233 print("""
1234 [1] Web2Attack
1235 [2] Skipfish
1236 [3] SubDomain Finder
1237 [4] CheckURL
1238 [5] Blazy(Also Find ClickJacking)
1239 [6] Sub-Domain TakeOver
1240 [7] Dirb
1241 [99] Back To Menu
1242 """)
1243
1244 functions_webAttack = {
1245 '1':self.web2attack,
1246 '2':self.skipfish,
1247 '3':self.subdomain,
1248 '4':self.checkurl,
1249 '5':self.blazy,
1250 '6':self.subdomaintakeover,
1251 '7':self.dirb,
1252 '99':self.menu
1253 }
1254
1255 choice = input("Z4nzu =>> ")
1256 self.check_input(choice, self.webAttack, functions_webAttack.keys())
1257
1258 functions_webAttack[choice]()
1259
1260 def dirb(self):
1261 self.clear_scr()

Callers 7

dirbMethod · 0.95
web2attackMethod · 0.95
skipfishMethod · 0.95
subdomainMethod · 0.95
checkurlMethod · 0.95
blazyMethod · 0.95
subdomaintakeoverMethod · 0.95

Calls 2

clear_scrMethod · 0.95
check_inputMethod · 0.95

Tested by

no test coverage detected