Yeah I detoured the WSASend to get the proper socket.
About the headers, its 2 byte header i think.. or maybe you can consider it as 4-byte
When I send using WSASend nothing happens.. @.@
where's an example how i send
That gives me a no response to the server and get me disconnected..
About the headers, its 2 byte header i think.. or maybe you can consider it as 4-byte
Code:
A0 00 -> Headers XX XX -> 66 00/ 7E 00 -> Depends upon the use of the skill (Consider as Second Header)
where's an example how i send
Code:
WSABUF lpBuffers;
BYTE SendBuffer[] = { 0x04, 0x00, 0x2D, 0x00, 0x9A, 0x00 };
Encrypt(&SenderBuffer);
lpBuffers.len = 0x6;
lpBuffers.buf = (char*)SendBuffer;
WSASend(s, &lpBuffers, 1, NULL or (LPDWORD)0x0018FC70, 0, NULL, NULL);