| 643 | |
| 644 | |
| 645 | def reaver(): |
| 646 | print """ |
| 647 | Reaver has been designed to be a robust and practical attack against Wi-Fi Protected Setup |
| 648 | WPS registrar PINs in order to recover WPA/WPA2 passphrases. It has been tested against a |
| 649 | wide variety of access points and WPS implementations |
| 650 | 1 to accept / 0 to decline |
| 651 | """ |
| 652 | creaver = raw_input("y / n :") |
| 653 | if creaver in yes: |
| 654 | os.system( |
| 655 | "apt-get -y install build-essential libpcap-dev sqlite3 libsqlite3-dev aircrack-ng pixiewps") |
| 656 | os.system("git clone https://github.com/t6x/reaver-wps-fork-t6x.git") |
| 657 | os.system("cd reaver-wps-fork-t6x/src/ & ./configure") |
| 658 | os.system("cd reaver-wps-fork-t6x/src/ & make") |
| 659 | elif creaver in no: |
| 660 | clearScr() |
| 661 | wire() |
| 662 | elif creaver == "": |
| 663 | menu() |
| 664 | else: |
| 665 | menu() |
| 666 | |
| 667 | |
| 668 | def ssls(): |