Hacking a game to learn FRIDA basics
In Summary : The first step should be to launch the client, register a new player, and start exploring the world. After you spent some min...
https://updatesinfosec.blogspot.com/2018/07/hacking-game-to-learn-frida-basics.html
In Summary :
The first step should be to launch the client, register a new player, and start exploring the world. After you spent some minutes moving around the map and checking the HUD (mana, life, items…) it is time to move on and get our hands dirty with the terminal. With the game running, do a
kindly refer the following link as follow up :
https://ift.tt/2udNp19
The first step should be to launch the client, register a new player, and start exploring the world. After you spent some minutes moving around the map and checking the HUD (mana, life, items…) it is time to move on and get our hands dirty with the terminal. With the game running, do a
ps -aux
and check the name of the main binary used for the client: PwnAdventure3-Linux-Shipping. It is a dynamic linked binary with symbols (use file
to see it), so is highly probable that the “core” of interesting things are located inside a shared object. We can use ldd
to list easily all the shared objects used by the binary [...]kindly refer the following link as follow up :
https://ift.tt/2udNp19