Skip to content

Commit

Permalink
Update readme.md (#3)
Browse files Browse the repository at this point in the history
* Update readme.md

Add Download/Install

* Update readme.md

* Update readme.md

* Update readme.md
  • Loading branch information
baptistedftn authored Oct 13, 2020
1 parent 875f6e5 commit 640c2cf
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,36 @@ WiFi Bruteforce
A **Python** script to find all Wifi Networks in the area and try the
[100K most used passwords](https://github.com/danielmiessler/SecLists) on them.

### DOWNLOAD/INSTALL

1º - Download framework from github
```
git clone https://github.com/madeindjs/Wifi_BruteForce.git
```

2° - Install Python & requirements
```
sudo apt-get install python
sudo curl https://bootstrap.pypa.io/get-pip.py -o /get-pip.py
sudo python /get-pip.py
sudo pip install scapy
sudo pip install wifi
```

3º - Set execution permitions
```
cd Wifi_BruteForce
sudo find ./ -name "*.sh" -exec chmod +x {} \;
sudo find ./ -name "*.py" -exec chmod +x {} \;
```

4º - Run main tool
```
sudo python __main__.py
```

### TODO:

* add a percentage
Expand Down

0 comments on commit 640c2cf

Please sign in to comment.