Open exphck1337 opened 6 years ago
How do I check if the statement is relative using capstone?
Example: jmp 0xDEADBEEF call 0xDEADBEEF
How to check this using capstone?
The way that I've been doing this is to check to see if the bytes "\xef\xbe\xad\xde" (assuming little endian) are in the instruction bytes. If there is a better way, I would also like to know about it.
"\xef\xbe\xad\xde"
How do I check if the statement is relative using capstone?
Example: jmp 0xDEADBEEF call 0xDEADBEEF
How to check this using capstone?