(self)
| 553 | |
| 554 | ## Wireless Attack ===== |
| 555 | def wire(self): |
| 556 | self.clear_scr() |
| 557 | os.system("figlet -f standard -c Wireless Attack Tools | lolcat") |
| 558 | |
| 559 | print(""" |
| 560 | [1] WiFi-Pumpkin |
| 561 | [2] pixiewps |
| 562 | [3] Bluetooth Honeypot GUI Framework |
| 563 | [4] Fluxion |
| 564 | [5] Wifiphisher |
| 565 | [6] Wifite |
| 566 | [7] EvilTwin |
| 567 | [8] Fastssh |
| 568 | [9] Howmanypeople |
| 569 | [99] Back To The Main Menu """) |
| 570 | |
| 571 | functions_wire = { |
| 572 | '1':self.wifipumkin, |
| 573 | '2':self.pixiewps, |
| 574 | '3':self.bluepot, |
| 575 | '4':self.fluxion, |
| 576 | '5':self.wifiphisher, |
| 577 | '6':self.wifite, |
| 578 | '7':self.eviltwin, |
| 579 | '9':self.howmanypeople, |
| 580 | '8':self.fastssh, |
| 581 | '99':self.menu |
| 582 | } |
| 583 | |
| 584 | choice = input("Z4nzu =>> ") |
| 585 | self.check_input(choice, self.wire, functions_wire.keys()) |
| 586 | |
| 587 | functions_wire[choice]() |
| 588 | |
| 589 | def fastssh(self): |
| 590 | self.clear_scr() |
no test coverage detected