All Questions
Tagged with patch-reversing debuggers
3 questions
1
vote
1
answer
505
views
IDA PRO does miss calls when tracing
I am following this tutorial:
enter link description here
Though it uses Olly I am following with IDA.
Basically i am tying to catch where a popup decision is taking place in the program.
I though ...
0
votes
0
answers
207
views
How to access and modify data segment when doing hardware breakpoint crashes the application?
I want to modify the data segment in the x64_DBG, however, I don't know how to access it.
lea r8,qword ptr ds:[7FEF0CA6AD8]
In the above code, the address 7FEF0CA6AD8 is loaded in r8 register. I ...
5
votes
1
answer
13k
views
How to reverse a dll and call its functions?
I have got a custom.dll which is utilized in a larger application. The application executable imports this dll to use its functionality. But this functionality is not used through out the life cycle ...