x-nas / WinsockPacketEditor

WPE x64 is a Windows software that can intercept and modify WinSock packets, with adaptive support for 32-bit and 64 bit target programs WPE x64 是一款可以拦截并修改 WinSock 封包的 Windows 软件,自适应支持 32 位及 64 位的目标程序
https://www.wpe64.com
MIT License
274 stars 73 forks source link

请问能我想根据接受的封包实时修改发送封包的内容,应该怎么实现。 #50

Open hxf992 opened 2 days ago

hxf992 commented 2 days ago

我现在是收到封包,然后把封包存入剪辑版, 然后编程处理, 然后再模拟按键复制到发送。 有办法直接编程 不用模拟界面操作 实现吗。

x-nas commented 2 days ago

您好,最简单的办法是把想要发送的内容准备好以后,直接调用我程序里面的 SendPacket(int iSocket, Socket_Cache.SocketPacket.PacketType stType, string sIPFrom, string sIPTo, byte[] bSendBuffer)方法

发送的数据转换成byte数组,其它参数直接用我程序里的值就可以了

hxf992 commented 1 day ago

好的 谢谢解答!