我正在自学分析恶意软件,为了增加对一些更常见的反调试技术的理解,我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。