Skip to content

Commit d4c5c47

Browse files
committed
write some readme content
1 parent 5ec4ab3 commit d4c5c47

4 files changed

Lines changed: 63 additions & 9 deletions

File tree

FakeWifiAP/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Wifi Fake AP
1+
# Wi-Fi Fake AP
22

33
Script to create fake access points, similar to mdk3 or mdk4.
44

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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)

WifiDeauth/readme.md

Lines changed: 56 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,57 @@
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)

WifiScanner/readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Wifi Scanner
1+
# Wi-Fi Scanner
22

33
Script 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

4141
just run it...
4242

0 commit comments

Comments
 (0)