[Help] Sniffer Packets

07/18/2013 20:55 xBit64#1
how can i sniff packets and decode it in vb.net or c# ?
07/19/2013 22:31 Hate_Me_#2
there many tools to sniff packets like "wireshark" and to decode them from lc you need the lccrypt project that is done in c++ so you need to translate it self to C# or vb.net
07/20/2013 14:20 xBit64#3
ok, where i can found lccrypt in c++ ?
07/20/2013 15:36 Senfo#4
I guess nowhere.. exept of some older versions in leaked sources
07/20/2013 22:27 xBit64#5
like ep2 emulator source?
07/21/2013 09:54 dsfgd#6
No, this is wrong, you don't need any source code, you need knowledge in c++ and hooks.

You cannot decrypt a seed/time/session id encrypted packet with an external tool, you need to do this from the internal with injected code or an injected dll.

You need to create one hook before the packet gets encrypted and one after it gets decrypted, then you can log them, there is no other way.