Slashdot Mirror


User: jinglz

jinglz's activity in the archive.

Stories
0
Comments
1
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 1

  1. Hydan works. on Program Hides Secret Messages in Executables · · Score: 2, Interesting
    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