【文件属性】:
文件名称:DLL自删除代码
文件大小:261B
文件格式:TXT
更新时间:2011-05-03 01:47:48
DLL自删除代码
DLL自删除代码,很好的东西
网友评论
- 这东西真的垃圾
就这点东西
char szFileName[MAX_PATH];
GetModuleFileName(g_hmodDLL, szFileName, sizeof(szFileName));
__asm
{
lea eax, szFileName
push 0
push 0
push eax
push ExitProcess
push g_hmodDLL
push DeleteFile
push FreeLibrary
ret
}