1

我正在自学分析恶意软件,为了增加对一些更常见的反调试技术的理解,我int 2d在汇编中编写了调试器检测概念。然而,当它到达 时int 2d,程序终止而不是跳过预期的操作码。这是我的代码:

include 'win32ax.inc'

.data
dbg db "Debugger!",0
nodbg db "No debugger!",0

.code
start:
xor eax,eax    ;set the zero flag
int 2dh        ;The debugger detection interupt

inc eax        ;the instruction to be skipped during debugging
jnz notpresent ;the jump

invoke MessageBox,0,dbg,dbg,MB_OK ;Debugger detected!
jmp exit

notpresent:
invoke MessageBox,0,nodbg,nodbg,MB_OK ;No debugger detected!

exit:
invoke ExitProcess,0
.end start

它应该做的是跳到 MessageBox 说“没有调试器!”,相反,当它到达int 2d操作码时,即使没有被调试,程序也会崩溃。有什么有用的提示吗?我做错了什么,我该如何解决?如果有帮助,我正在使用 The Flat Assembler。

4

1 回答 1

1

如果没有附加调试器,INT 2Dh 将抛出异常。所以你需要处理这个异常,否则你的程序会崩溃。

您尝试了哪个调试器,因为其中许多似乎无法正确处理此操作码,并且可能会崩溃或显示意外行为。

可以在此处找到代码示例和更多信息:OpenRCE 调试器检测

于 2014-06-19T08:32:42.617 回答