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

While money can't buy happiness, it certainly lets you choose your own form of misery.

Working...