Talk:Polymorphic code: Difference between revisions

Content deleted Content added
substitution
No edit summary
Line 15:
A better example would be the substitution of instructions with equally-effective other instructions. For example,
 
cmp eax, 7<BR>
je destination
 
is computationally correct (possibly not complete, but this is indeed unneccessary) as this:
 
sub eax, 7<BR>
jejz destination