__________________________[ Network Everything ]
THIS LIST IS A WORK IN PROGRESS AS SMALLER LISTS ARE CONDENSED DOWN
__________________________[ Scapy Network Fuzz ]
============= Bad IP Version
send(IP(dst=”192.168.10.8″, src=”192.168.10.5″, version=0)/
… TCP(dport=”www”), iface=”eth0″, count=2000)
============= Bad TCP Checksum
send(IP(dst=”192.168.10.8″)/TCP(chksum=0x5555),iface=”eth0″,count=2000)
============== Bad TCP Flags (All Cleared and SQ# ==0)
send(IP(dst=”192.168.10.8″)/TCP(flags=””,seq=555),iface=”eth0″,count=2000)
============== Bad TCP Flags (All Flags Set)
send(IP(dst=”192.168.10.8″)/TCP(flags=0x0ff),iface=”eth0″,count=2000)
============== FIN Only Set
send(IP(dst=”192.168.10.8″)/TCP(flags=”F”),iface=”eth0″,count=2000)
============== Bad IP Checksum
send(IP(dst=”192.168.10.8″, src=”192.168.10.5″, chksum=0x5500)/TCP(dport=”www”),iface=”eth0″,count=2000)
Leave a Reply