Putting the Packet Together
Learn to combine IP and TCP headers within a single packet using Scapy.
We'll cover the following...
Examining IP and TCP headers
We’ve defined the individual layers of a packet used in a SYN scanner. This includes defining the IP and TCP headers for the final packet. However, we can only send the packet over the network if we put the layers together into a single packet. ...