I am trying to send a specific packet size (100 bytes) using scapy , but it does not seem to have received it.
I use this to start.
sr(IP(dst="192.168.1.1")/TCP(dport=443))
Looking at the docs / help, I can't tell if I can use PacketLenField to indicate the length of the packet. I can do this with NMAP and NSE, but would like to do it outside of NMAP.
Any ideas on this?
Thanks!
source share