File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # Wifi Fake AP
1+ # Wi-Fi Fake AP
22
33Script to create fake access points, similar to mdk3 or mdk4.
44
Original file line number Diff line number Diff line change @@ -9,6 +9,6 @@ The author of these scripts (_code_) take no responsibility for your use or misu
99## Table of Content
1010
1111- [ DNS Sniffer] ( ./DNSsniffer/readme.md )
12- - [ Fake Wifi AP] ( ./FakeWifiAP/readme.md )
13- - [ Wifi Scanner] ( ./WifiScanner/readme.md )
14-
12+ - [ Fake Wi-Fi AP] ( ./FakeWifiAP/readme.md )
13+ - [ Wi-Fi Scanner] ( ./WifiScanner/readme.md )
14+ - [ Wi-Fi Deauthentication ] ( ./WifiDeauth/readme.md )
Original file line number Diff line number Diff line change 1- # Wifi Deauthentication
1+ # Wi-Fi Deauthentication
22
3- do be done
3+ Script to deauthenticate Wi-Fi connections.
4+
5+ ## Prepare environment
6+
7+ - you can use Python virtualenv
8+ - Python3.x is needed
9+ - Wi-Fi interface must be in "Monitor Mode" (_ you can read [ here] ( https://softwaretester.info/wifi-monitor-mode-basics/ ) how to do_ )
10+ - root rights required (_ or via sudo_ )
11+
12+ ``` shell
13+ # install needed packages
14+ $ sudo apt install python3-pip python3-venv
15+
16+ # create and change into Project directory
17+ $ mkdir -p ~ /Projects/WifiDeauth && cd ~ /Projects/WifiDeauth
18+
19+ # create virtualenv
20+ $ virtualenv -p python3 venv
21+ # or
22+ $ python3 -m venv venv
23+
24+ # activate virtualenv
25+ $ . venv/bin/activate
26+
27+ # install requirements
28+ (venv) $ pip install -r requirements.txt
29+ # or
30+ (venv) $ pip install scapy
31+
32+ # list packages (optional)
33+ (venv) $ pip freeze
34+
35+ # make file executable
36+ (venv) $ chmod u+x WifiDeauth.py
37+ ```
38+
39+ ## Run Wi-Fi Deauthenticator
40+
41+ just run it...
42+
43+ ``` shell
44+ ... to be done ...
45+ ```
46+
47+ to interrupt press [ CTRL + c]
48+
49+ ## Example output
50+
51+ some example from my terminal...
52+
53+ ``` shell
54+ ... to be done ...
55+ ```
56+
57+ [ Go back] ( ../README.md )
Original file line number Diff line number Diff line change 1- # Wifi Scanner
1+ # Wi-Fi Scanner
22
33Script to scan on 2.4 GHz Wi-Fi's (_ if ENC is OPN or WEP the output is colored_ ).
44
@@ -27,7 +27,7 @@ $ . venv/bin/activate
2727# install requirements
2828(venv) $ pip install -r requirements.txt
2929# or
30- (venv) $ pip install Faker scapy
30+ (venv) $ pip install scapy
3131
3232# list packages (optional)
3333(venv) $ pip freeze
@@ -36,7 +36,7 @@ $ . venv/bin/activate
3636(venv) $ chmod u+x ScanWifi.py
3737```
3838
39- ## Run Wifi Scanner
39+ ## Run Wi-Fi Scanner
4040
4141just run it...
4242
You can’t perform that action at this time.
0 commit comments