Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

(HELP) Help me find Packet Structure ?

Initiate Mage
Joined
Nov 13, 2013
Messages
13
Reaction score
0
Please help me find Packet structure ?
Now I saw Initial Socket Function (sub_F10EB0)

And some interesting function
sub_F110F2
sub_F12964

Sorry for my bad english.

EXE:
Thank you !
 
Initiate Mage
Joined
Sep 2, 2017
Messages
15
Reaction score
1
If you post some packet samples or screenshot of functions, someone might be able to help.. as for analyzing for you the file or game, thats unlikely.
 
Initiate Mage
Joined
Sep 2, 2017
Messages
15
Reaction score
1
No worries - it still stands. Just post screenshots like i said, higher chances of people helping :)
 
Initiate Mage
Joined
Nov 13, 2013
Messages
13
Reaction score
0
riflowth - (HELP) Help me find Packet Structure ? - RaGEZONE Forums




It’s first WSASend Calling
 
Initiate Mage
Joined
Sep 2, 2017
Messages
15
Reaction score
1
Code:
struct NetworkPacket{
char _padding[0x94];
size_t len; //len for something
size_t len;
char* startBuffer;
char* endBuffer;
};

Your function doesn't show how the actual packet is created, or processed.
v3 + 152 or 148 could be the len for some sort of data in the buffer
 
Initiate Mage
Joined
Nov 13, 2013
Messages
13
Reaction score
0
Some Interesting thing ...
sub_F110F2
sub_F12964
off_116EC40
 
Joined
Jun 10, 2009
Messages
658
Reaction score
140
If you have .pdb file associated with the exe then you could load that into IDA Pro to rename functions into their proper names. Did you try running the game and sniffing packets sent by it through Wireshark?
 
Initiate Mage
Joined
Nov 13, 2013
Messages
13
Reaction score
0
If you have .pdb file associated with the exe then you could load that into IDA Pro to rename functions into their proper names. Did you try running the game and sniffing packets sent by it through Wireshark?

I can't find packet structure ! Sorry !
 
◝(⁰▿⁰)◜Smile◝ (⁰▿⁰)◜
Developer
Joined
May 29, 2007
Messages
2,167
Reaction score
898
I would like to address you that we are not going to do the work for you. We can only push you into the right direction so please post more specific things than only IDA addresses.
 
Back
Top