Page 1 of 1

Packet decryption help

PostPosted: Mon Jul 12, 2010 6:27 am
by turdsammiches
i have the source code that the game client uses to compress and encrypt packets

I also have the code that the game server uses to decompress and decrypt the packets.

What i need help with is implementing this code to decrypt received and sent packets and then re-encrypting them

I have no prior programming knowledge. where do i start? :?:

also this game is flash so am i able to inject a dll into the browser that would be able to intercept it's packets?

Re: Packet decryption help

PostPosted: Fri Jul 30, 2010 3:52 pm
by L. Spiro
Of you have the source code then your easiest route is to compile the encryption and decryption routines to a DLL, inject the DLL, and from the DLL hook the packet routines as described in Shynd’s tutorials.


L. Spiro

Re: Packet decryption help

PostPosted: Wed Oct 27, 2010 9:45 pm
by turdsammiches
thanks for replying... i forgot all about this thread i made, another quick question though, if the code i have is actionscript 3, is there anyway to code a dll implementing the as3 code or would i have to rewrite it all using C++?

Re: Packet decryption help

PostPosted: Thu Oct 28, 2010 9:48 pm
by L. Spiro
I would just rewrite it.


L. Spiro

Re: Packet decryption help

PostPosted: Fri Oct 29, 2010 12:35 am
by turdsammiches
ok, thanks.