Chetan
Chetan

Reputation: 141

Adding payload in packet

Can I insert image or document (in MBs) as a data in packet using scapy?

This is what I did to send data.

data = "University of texas at San Antonio"
a = IP(dst="129.132.2.21")/TCP()/data
send(a)

Upvotes: 12

Views: 41758

Answers (1)

johnthagen
johnthagen

Reputation: 9149

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)

Upvotes: 19

Related Questions