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

There is never time to do it right, but always time to do it over.

Working...