Hello, i am trying to get the packets of a game, i did it but i am sure it is encrypted:
What would be the best solution to get the packets decrypted? I heard something about tracing back functions but i have no idea and i've searched in google but no results
c++ recv hook 07/22/2013 - C/C++ - 9 Replies Hey,
ich hab mir einen recv, send hook gebastelt.
Die Send funktion funktioniert einwandfrei aber die recv funktion leitet die packete nachdem loggen nicht mehr weiter.
Wenn ich die logging funktion bei der recv funktion austelle geht es einwandfrei.
int WINAPI XRecv(SOCKET Socket, char *Buffer, int Length, int Flags)
{
char *Buf = Buffer;
int leng = Recv(Socket, Buf, Length, Flags);
if (leng > 0)
Hooking recv 02/20/2013 - Kal Online - 15 Replies I have a question about that ;) I'm trying to EAT Hook recv function after injecting dll into engine.exe. The trick is that i don't really know if kal is using GetProcAddress to retrieve recv address on every call. I suppose it does because if we try simple jmp patch on it. It works for a short time after hs patches it.
My hook is also working i guess but, well i don't really know why it is not showing data ;)
I found in EAT of ws2_32.dll address:
recv 0x74B80DA8
and it is const....
recv() function 09/02/2012 - C/C++ - 4 Replies hi friends ..
I receive a packet with the function recv ();
I receive with:
recvbuf char ;
recv (Connect, recvbuf, 255.0);
ok, no problem ..
[help] recv 08/02/2009 - Kal Online - 3 Replies Soo,
man man behinderter tag.
naja wayne.
bin grad dabei mich etwas mehr mit den recv packets außeinander zu setzen.
unter anderem mit den zahlen dahinter.
Borsti sagte das ist die größe (size)
naja also ich hab mir das mal als hex ausgeben lassen (das packet für empfangene nachrichten im chat )
ich hab mir das folgendermaßen "notiziert"
0c 00 3c //size
44 65 6e 4a 61 73//name
[Question] Hooking send() & recv() works, but recv hiding data for co??? 05/06/2009 - CO2 Programming - 2 Replies Hey guys, I've been making a DLL to allow another program to intercept the packets of conquer using windows pipes. (Then its the job of the main program to decrypt the packets, the DLL only gives a communication channel for the main program)
(winsock functions btw)
- hooking send() works fine for my internet browser
- hooking recv() works fine for my internet browser
- hooking send() works fine for conquer online