Can I insert image or document (in MBs) as a data in packet using scapy?
This is what I did to send data.
dat
Yes, you can send raw data like this. In this example, data will be ASCII encoded.
>>> data = 'University of Texas at San Antonio' >>> a = IP(dst='129.132.2.21') / TCP() / Raw(load=data) >>> send(a)