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!

game with several ips

Initiate Mage
Joined
Nov 24, 2020
Messages
1
Reaction score
0
I'm sorry if this is the wrong area, but I hope someone can help me



there is a game that its executable, can bypass the login menu (external) depending on the parameter, but there is another internal login system in the game, and the crazy part of it is, depending on the parameter, different ip appears on the login screen example: game.exe -example 1 = an ip appears game.exe -example 2 = another ip appearsand I don't know how to find these addresses, because it's been days since I've been able to find this in the game (use IDA and ollydbg)
 
Junior Spellweaver
Joined
Sep 3, 2008
Messages
146
Reaction score
75
There are some things to check.

1- Check some stats App parameters usually means on Code -> If statements or Switch(on c++).
2- One method could be, bypass those "Ifs" on ollydbg changing bytes based on what you already said.(Normally ifs statements are some strcmp with some CMP or JE statements on ASM)...
3- Second Methong could be Nop all Trash with ollydbg. Check IDA for Start/End and test.

Reverse is only test, crash & keep studing.
 
Back
Top