在 C# 上使用 SharpPcap 进行 IP 地址欺骗
我将使用 SharpPcap 框架来制作我的欺骗程序,因此我需要在源地址字段中使用另一个 IP 地址编辑数据包的机器 IP 地址。
我在 SharpPcap 项目上找到了一些示例,但是如何编辑或更改发送数据包的源地址字段?
这是发送随机数据包的示例代码:
byte[] bytes = GetRandomPacket();
private static byte[] GetRandomPacket()
{
byte[] packet = new byte[200];
Random rand = new Random();
rand.NextBytes( packet );
return packet;
}
- device.SendPacket( 字节 );
I will use SharpPcap framework to make my spoofing program, so I need to edit my machine's IP address of the packet with another IP address on the source address field.
I found some example on SharpPcap project, but how can I edit or change the source address field of sending packet?
Here is the sample code for sending random packets:
byte[] bytes = GetRandomPacket();
private static byte[] GetRandomPacket()
{
byte[] packet = new byte[200];
Random rand = new Random();
rand.NextBytes( packet );
return packet;
}
-
device.SendPacket( bytes );
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
请尝试使用 Pcap.Net。
以下是如何在 Pcap.Net 中构建具有特定源地址和目标地址以及自定义负载的简单 IPv4 数据包:
Try Pcap.Net instead.
Here is how you build a simple IPv4 packet with specific source and destination addresses and a custom payload in Pcap.Net: