()
| 357 | |
| 358 | |
| 359 | def webhack(): |
| 360 | print(HACKERPROlogo) |
| 361 | print(" {1}--Drupal Hacking ") |
| 362 | print(" {2}--Inurlbr") |
| 363 | print(" {3}--Wordpress & Joomla Scanner") |
| 364 | print(" {4}--Gravity Form Scanner") |
| 365 | print(" {5}--File Upload Checker") |
| 366 | print(" {6}--Wordpress Exploit Scanner") |
| 367 | print(" {7}--Wordpress Plugins Scanner") |
| 368 | print(" {8}--Shell and Directory Finder") |
| 369 | print(" {9}--Joomla! 1.5 - 3.4.5 remote code execution") |
| 370 | print(" {10}-Vbulletin 5.X remote code execution") |
| 371 | print( |
| 372 | " {11}-BruteX - Automatically brute force all services running on a target") |
| 373 | print(" {12}-Arachni - Web Application Security Scanner Framework \n ") |
| 374 | print(" {99}-Back To Main Menu \n") |
| 375 | choiceweb = raw_input("hackerpro~# ") |
| 376 | if choiceweb == "1": |
| 377 | clearScr() |
| 378 | maine() |
| 379 | if choiceweb == "2": |
| 380 | clearScr() |
| 381 | ifinurl() |
| 382 | if choiceweb == '3': |
| 383 | clearScr() |
| 384 | wppjmla() |
| 385 | if choiceweb == "4": |
| 386 | clearScr() |
| 387 | gravity() |
| 388 | if choiceweb == "5": |
| 389 | clearScr() |
| 390 | sqlscan() |
| 391 | if choiceweb == "6": |
| 392 | clearScr() |
| 393 | wpminiscanner() |
| 394 | if choiceweb == "7": |
| 395 | clearScr() |
| 396 | wppluginscan() |
| 397 | if choiceweb == "8": |
| 398 | clearScr() |
| 399 | shelltarget() |
| 400 | if choiceweb == "9": |
| 401 | clearScr() |
| 402 | joomlarce() |
| 403 | if choiceweb == "10": |
| 404 | clearScr() |
| 405 | vbulletinrce() |
| 406 | if choiceweb == "11": |
| 407 | clearScr() |
| 408 | brutex() |
| 409 | if choiceweb == "12": |
| 410 | clearScr() |
| 411 | arachni() |
| 412 | elif choiceweb == "99": |
| 413 | menu() |
| 414 | elif choiceweb == "": |
| 415 | menu() |
| 416 | else: |
no test coverage detected