Forgot your password?
typodupeerror

Comment Hydan works. (Score 2, Interesting) 250

From the intel instruction set manual:
"The SUB instruction ... sets the CF flags to indicate an overflow in the unsigned result".

Which means that the CF stays the same for both instructions since their results are the same.
ADD EAX, 3 ; eax = eax + 3
Is the same as:
SUB EAX, -3 ; eax = eax - (-3)
So, "Hydan" works.
-j

Slashdot Top Deals

It is now pitch dark. If you proceed, you will likely fall into a pit.

Working...