python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Meaning of __unwind in IDA pro?
In IDA some functions have the __unwind keyword, usually followed by the name of a compiler-generated function like __C_specific_handler or __GSHandlerCheck. What does __unwind mean and what relevance...
user16209862
Votes: 0
Answers: 0
how to simplify this pseudocode
I have this pseudocode in IDA but I don't understand the result when I compiled it
__int64 v17 = 507890351016;
__int64 v20 = 0;
auto test = *(WORD*)(*(uintptr_t*)v17 + v20);
the output of test is 48...
Mathew Farrell
Votes: 0
Answers: 1
How to calculate the address of a function using the base address of ntoskrnl.exe
This is what I have determined thus far on a test machine:
base address of ntoskrnl.exe is 0xFFFFF802C8803000
using IDA the address of the imagebase is 0x0000000140000000
using IDA the address of the...
JbG
Votes: 0
Answers: 1
Ida IDC equivalent of GDB /x and gdb /p, accessing pointer at address and IDA syntax quirks
I can't for the love of me find a simple answer to this question. I find IDC documentation confusing. I know I can call GetRegValue which returns some mumbo jumbo I don't even understand. For example:...
swaggg
Votes: 0
Answers: 1