Finding RIGHT Module
PRACTICE ! PRACTICE ! PRACTICE !
Last updated
PRACTICE ! PRACTICE ! PRACTICE !
Last updated
Finding the apt module refers to finding some kind of dll's within the program which has NO MEMORY PROTECTIONS such as DEP - ASLR - SAFE SEH etc
Do download the mona.py and place it in the Debugger PyCommand's location
To interact with the mona module we'll have to use the command
So there is a module called essfunc.dll whose memory protections are all set to FALSE
Now the last thing to do is find an opcode equivalent to JMP - To do that !
So now lets use the mona module to find the assembly opcode FFE4 by using the command
Let's try out the first RET address, which is 0x625011af
Now let's write our python script automate this
Before executing the script make sure to set a breakpoint on the JMP code (625011af)
F2 will set a breakpoint to the JMP code, now let's run the script !