Skip to main content
Search type Search syntax
Tags [tag]
Exact "words here"
Author user:1234
user:me (yours)
Score score:3 (3+)
score:0 (none)
Answers answers:3 (3+)
answers:0 (none)
isaccepted:yes
hasaccepted:no
inquestion:1234
Views views:250
Code code:"if (foo != bar)"
Sections title:apples
body:"apples oranges"
URL url:"*.example.com"
Saves in:saves
Status closed:yes
duplicate:no
migrated:no
wiki:no
Types is:question
is:answer
Exclude -[tag]
-apples
For more details on advanced search visit our help page
Results tagged with
Search options not deleted user 26176

The translation of machine code into a human readable assembly code, also the result of such translation.

3 votes
Accepted

What is this assembly doing?

I guess the original code is something like: char input_buffer[...]; // ... int c = input_buffer[i]; Since the variable c is a int and input_buffer is a char[], your compiler has to promote the rea …
wisk's user avatar
  • 1,179
0 votes

Can't find SetCooperativeLevel call in disassembled program

My problem is that I tried to disassemble the EXE using both IDA Pro 7.0 and OllyDbg 2.01 but neither of them have been able to find any calls to that function. It won't be called directly becaus …
wisk's user avatar
  • 1,179
2 votes
Accepted

What is the following assembly code doing?

I think this is a strcmp function which was compiled without optimization and is really inefficient. Here is why: The function only uses r0 and r1 which are first and the second parameter. Both par …
wisk's user avatar
  • 1,179
6 votes
Accepted

How do I go about overriding a function internally defined in a binary on Linux?

You have several options here, but I like this one. Since the code is already inside the executable, so you have to patch the entrypoint to jump to a new function. To do so, I suggest to use a shared …
wisk's user avatar
  • 1,179