The Chronicles of Spellborn
Automated Packet Reverser - Printable Version

+- The Chronicles of Spellborn (https://forum.spellborn.org)
+-- Forum: Archive (https://forum.spellborn.org/forumdisplay.php?fid=6)
+--- Forum: The Chronicles of Spellborn: Reborn (https://forum.spellborn.org/forumdisplay.php?fid=18)
+--- Thread: Automated Packet Reverser (/showthread.php?tid=6)



Automated Packet Reverser - tbjoker - 19-03-2015


I did some progress on my automated packet reverser, but still does need some work. It doesn't support function call following, however that'll be added soon.. Function calls = ERROR
<p href="<fileStore.core_Attachment>/monthly_2015_03/ss+(2015-03-19+at+08.17.17).png.7aaef98874086e4976914a08dfd408e3.png">[img]<fileStore.core_Attachment>/monthly_2015_03/ss+(2015-03-19+at+08.17.17).thumb.png.cc7dc5ace5d5b4b250f8a1878286ed93.png[/img]




Automated Packet Reverser - Polymo - 19-03-2015

looks like a nifty tool. Currently we are using a generated sdk that almost has all information needed, we just need to open ida or ollydbg to see what the packets expect or where they go. The harder part is to find out how the values are used.




Automated Packet Reverser - tbjoker - 19-03-2015

Locate base pointers and then track the values maybe? :x just throwing out ideas.. I mean even if the information is incorrect after the read (It wont fail instantly as memory works that way) having the base pointers you can track them and see which functions are using them.. and where, then you know what type of variable it is etc.
 
Edit:
This is probably something you'll have to do since you'll probably want to hook the game up onto your own DLL so that you can add content and change logics etc.. Fix bugs.




Automated Packet Reverser - Saltiel - 19-03-2015

What would be awesome is if your generator generated an output in Wiki format in order to easily update what we found about a packet! With one page by packet category (one page for every packet would be too huge and hard to maintain). I don't know if it's easy or not, but I think that could be very handy. [Image: default_smile.png]
 
Edit: Btw tbjoker I would be very interested to learn how to program codes like that! The only thing I managed to do in programming RE is dll injection. I have no idea about pointer tracing etc...




Automated Packet Reverser - tbjoker - 19-03-2015

Well there's alot of things to consider... You might want to make an interface for a class, or just inject a DLL, or just have a detour manager for functions.
Pointer tracing is actually really easy.. There's alot about it on the net, and I mean... you wont have any problems understand it, and its needs.
But for right now my tool only tries to evaluate which types of data that are read, i mean a DWORD could be Float, Int, unsigned int, etc. you know, so once it computes the data perfectly I might make it store it in a "wiki" format so that a human could edit etc..