x3omdax / PenBox

PenBox - A Penetration Testing Framework - The Tool With All The Tools , The Hacker's Repo
https://www.facebook.com/CEH.TN
Other
464 stars 195 forks source link

Installation pixiewps... #9

Closed akamajoris closed 8 years ago

akamajoris commented 8 years ago
...    
Enter Your Choice:3
1 : reaver 
2 : pixiewps
99: Back To The Main Menu
Select from the menu:2
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

Continue ? Y/N : y
Cloning into 'pixiewps'...
remote: Counting objects: 245, done.
remote: Compressing objects: 100% (4/4), done.
remote: Total 245 (delta 0), reused 0 (delta 0), pack-reused 241
Receiving objects: 100% (245/245), 114.61 KiB | 86.00 KiB/s, done.
Resolving deltas: 100% (132/132), done.
Checking connectivity... done.
make: *** No targets specified and no makefile found.  Stop.
make: *** No rule to make target `install'.  Stop.

Fix

Replace

os.system("git clone https://github.com/wiire/pixiewps.git")
os.system(" cd pixiewps/src & make ")
os.system(" cd pixiewps/src & sudo make install")

To

os.system("git clone https://github.com/wiire/pixiewps.git")
os.system(" cd pixiewps/src && make ")
os.system(" cd pixiewps/src && sudo make install")
x3omdax commented 8 years ago

pull a request please :) thank you