I need help COMon - Advanced packet

08/24/2013 16:08 DataTime#1
I need to values ​​ReceiveMsg and SendMsg I do not understand reverse engineering needy this values ​​I want to help
08/28/2013 06:41 Spirited#2
Cleaned. Please keep on topic.

Relevant to this post... I'm assuming you mean the addresses. You can find the address of the send loop by finding the binary string "55 8D AC 24 FC DF FF FF B8 04 20 00 00". The expected command should be $55 PUSH EBP, after the RETN, CALL, and MOV. You can find the recv address by finding the referenced text string "catch error in process msg:%u.", then by tracing back to the first "TEST EAX, EAX". Following that will be "JNZ SHORT <Address>". That "Address" is the address of the recv function. Good luck.
09/17/2013 09:01 atef201080#3
Quote:
Originally Posted by Fang View Post
Cleaned. Please keep on topic.

Relevant to this post... I'm assuming you mean the addresses. You can find the address of the send loop by finding the binary string "55 8D AC 24 FC DF FF FF B8 04 20 00 00". The expected command should be $55 PUSH EBP, after the RETN, CALL, and MOV. You can find the recv address by finding the referenced text string "catch error in process msg:%u.", then by tracing back to the first "TEST EAX, EAX". Following that will be "JNZ SHORT <Address>". That "Address" is the address of the recv function. Good luck.
how you get the binary string for a address/table ?
09/21/2013 00:01 shadowman123#4
Quote:
Originally Posted by atef201080 View Post
how you get the binary string for a address/table ?
have u ever heard of Reverse Engineering ?