wolfmat
Confirmed Asshole
That's scapy stuff, am on OS X and it doesn't install. They're probably using the old SDK? Anyway, I'll check the docs.Hey PythonGAF, can someone do a quick test as I'm not on a machine with Python
Edit: The docs say it'll fragment a big packet into smaller packets, so you're gonna see the whole packet split into smaller packets up to a payload size of 24 bytes per packet. They're gonna be complete successive packets.
So according to the docs, first[0] will look like this (ignoring the specifics of your post, just with IP(dst="1.2.3.4")/ICMP()/("SOME_PAYLOAD_DAWG") as fragment's first arg):
Code:
<IP flags=MF frag=0 proto=ICMP dst=1.2.3.4 |<Raw load=’\x08\x00W \x00\x00\x00\x00SOME_PAYLOAD_DAWG’
|>>