A sample evasion technique
unsigned char idt[6];
__asm
{
sidt idt
}
if ((0×00 == idt[0]) && (0×08 == idt[1]))
{
fp = fopen(”c:\\donothing.txt”, “w”);
fclose(fp);
}
else
{
fp = fopen(”c:\\breakstuff.txt”, “w”);
fclose(fp);
}
CREDIT: /Arne

The A sample evasion technique by Zeroday 01100100011010010, unless otherwise expressly stated, is licensed under a Creative Commons Attribution-Share Alike 3.0 License.
Post a Comment
You must be logged in to post a comment.