Adding payload in packet

不打扰是莪最后的温柔 提交于 2019-12-21 09:12:31

问题


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)

回答1:


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)
>>> sendp(a)


来源:https://stackoverflow.com/questions/6605118/adding-payload-in-packet

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!