| 341 | |
| 342 | |
| 343 | def pixiewps(): |
| 344 | print"""Pixiewps is a tool written in C used to bruteforce offline the WPS pin exploiting the low or non-existing entropy of some Access Points, the so-called "pixie dust attack" discovered by Dominique Bongard in summer 2014. It is meant for educational purposes only |
| 345 | """ |
| 346 | choicewps = raw_input("Continue ? Y/N : ") |
| 347 | if choicewps in yes: |
| 348 | os.system("git clone https://github.com/wiire/pixiewps.git") |
| 349 | os.system("cd pixiewps & make ") |
| 350 | os.system("sudo make install") |
| 351 | if choicewps in no: |
| 352 | menu() |
| 353 | elif choicewps == "": |
| 354 | menu() |
| 355 | else: |
| 356 | menu() |
| 357 | |
| 358 | |
| 359 | def webhack(): |