CVE-2018-11040 Vulnerability Analysis & Exploit Details

CVE-2018-11040
Vulnerability Scoring

7.5
/10
Very High Risk

Highly exploitable, CVE-2018-11040 poses a critical security risk that could lead to severe breaches.

Attack Complexity Details

  • Attack Complexity: Low
    Exploits can be performed without significant complexity or special conditions.
  • Attack Vector: Network
    Vulnerability is exploitable over a network without physical access.
  • Privileges Required: None
    No privileges are required for exploitation.
  • Scope: Unchanged
    Exploit remains within the originally vulnerable component.
  • User Interaction: None
    No user interaction is necessary for exploitation.

CVE-2018-11040 Details

Status: Modified

Last updated: 🕞 21 Nov 2024, 03:42 UTC
Originally published on: 🕒 25 Jun 2018, 15:29 UTC

Time between publication and last update: 2340 days

CVSS Release: version 3

CVSS3 Source

nvd@nist.gov

CVSS3 Type

Primary

CVSS3 Vector

CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

CVE-2018-11040 Vulnerability Summary

CVE-2018-11040: Spring Framework, versions 5.0.x prior to 5.0.7 and 4.3.x prior to 4.3.18 and older unsupported versions, allows web applications to enable cross-domain requests via JSONP (JSON with Padding) through AbstractJsonpResponseBodyAdvice for REST controllers and MappingJackson2JsonView for browser requests. Both are not enabled by default in Spring Framework nor Spring Boot, however, when MappingJackson2JsonView is configured in an application, JSONP support is automatically ready to use through the "jsonp" and "callback" JSONP parameters, enabling cross-domain requests.

Assessing the Risk of CVE-2018-11040

Access Complexity Graph

The exploitability of CVE-2018-11040 depends on two key factors: attack complexity (the level of effort required to execute an exploit) and privileges required (the access level an attacker needs).

Exploitability Analysis for CVE-2018-11040

With low attack complexity and no required privileges, CVE-2018-11040 is an easy target for cybercriminals. Organizations should prioritize immediate mitigation measures to prevent unauthorized access and data breaches.

Understanding AC and PR

A lower complexity and fewer privilege requirements make exploitation easier. Security teams should evaluate these aspects to determine the urgency of mitigation strategies, such as patch management and access control policies.

Attack Complexity (AC) measures the difficulty in executing an exploit. A high AC means that specific conditions must be met, making an attack more challenging, while a low AC means the vulnerability can be exploited with minimal effort.

Privileges Required (PR) determine the level of system access necessary for an attack. Vulnerabilities requiring no privileges are more accessible to attackers, whereas high privilege requirements limit exploitation to authorized users with elevated access.

CVSS Score Breakdown Chart

Above is the CVSS Sub-score Breakdown for CVE-2018-11040, illustrating how Base, Impact, and Exploitability factors combine to form the overall severity rating. A higher sub-score typically indicates a more severe or easier-to-exploit vulnerability.

CIA Impact Analysis

Below is the Impact Analysis for CVE-2018-11040, showing how Confidentiality, Integrity, and Availability might be affected if the vulnerability is exploited. Higher values usually signal greater potential damage.

  • Confidentiality: High
    Exploiting CVE-2018-11040 can result in unauthorized access to sensitive data, severely compromising data privacy.
  • Integrity: None
    CVE-2018-11040 poses no threat to data integrity.
  • Availability: None
    CVE-2018-11040 does not impact system availability.

Exploit Prediction Scoring System (EPSS)

The EPSS score estimates the probability that this vulnerability will be exploited in the near future.

EPSS Score: 0.245% (probability of exploit)

EPSS Percentile: 64.41% (lower percentile = lower relative risk)
This vulnerability is less risky than approximately 35.59% of others.

CVE-2018-11040 References

External References

CWE Common Weakness Enumeration

CWE-829

CAPEC Common Attack Pattern Enumeration and Classification

  • Code Inclusion CAPEC-175 An adversary exploits a weakness on the target to force arbitrary code to be retrieved locally or from a remote location and executed. This differs from code injection in that code injection involves the direct inclusion of code while code inclusion involves the addition or replacement of a reference to a code file, which is subsequently loaded by the target and used as part of the code of some application.
  • Serialized Data External Linking CAPEC-201 An adversary creates a serialized data file (e.g. XML, YAML, etc...) that contains an external data reference. Because serialized data parsers may not validate documents with external references, there may be no checks on the nature of the reference in the external data. This can allow an adversary to open arbitrary files or connections, which may further lead to the adversary gaining access to information on the system that they would normally be unable to obtain.
  • DTD Injection CAPEC-228 An attacker injects malicious content into an application's DTD in an attempt to produce a negative technical impact. DTDs are used to describe how XML documents are processed. Certain malformed DTDs (for example, those with excessive entity expansion as described in CAPEC 197) can cause the XML parsers that process the DTDs to consume excessive resources resulting in resource depletion.
  • Local Code Inclusion CAPEC-251 The attacker forces an application to load arbitrary code files from the local machine. The attacker could use this to try to load old versions of library files that have known vulnerabilities, to load files that the attacker placed on the local machine during a prior attack, or to otherwise change the functionality of the targeted application in unexpected ways.
  • PHP Local File Inclusion CAPEC-252 The attacker loads and executes an arbitrary local PHP file on a target machine. The attacker could use this to try to load old versions of PHP files that have known vulnerabilities, to load PHP files that the attacker placed on the local machine during a prior attack, or to otherwise change the functionality of the targeted application in unexpected ways.
  • Remote Code Inclusion CAPEC-253 The attacker forces an application to load arbitrary code files from a remote location. The attacker could use this to try to load old versions of library files that have known vulnerabilities, to load malicious files that the attacker placed on the remote machine, or to otherwise change the functionality of the targeted application in unexpected ways.
  • Force Use of Corrupted Files CAPEC-263 This describes an attack where an application is forced to use a file that an attacker has corrupted. The result is often a denial of service caused by the application being unable to process the corrupted file, but other results, including the disabling of filters or access controls (if the application fails in an unsafe way rather than failing by locking down) or buffer overflows are possible.
  • Open-Source Library Manipulation CAPEC-538 Adversaries implant malicious code in open source software (OSS) libraries to have it widely distributed, as OSS is commonly downloaded by developers and other users to incorporate into software development projects. The adversary can have a particular system in mind to target, or the implantation can be the first stage of follow-on attacks on many systems.
  • Local Execution of Code CAPEC-549 An adversary installs and executes malicious code on the target system in an effort to achieve a negative technical impact. Examples include rootkits, ransomware, spyware, adware, and others.
  • Inclusion of Code in Existing Process CAPEC-640 The adversary takes advantage of a bug in an application failing to verify the integrity of the running process to execute arbitrary code in the address space of a separate live process. The adversary could use running code in the context of another process to try to access process's memory, system/network resources, etc. The goal of this attack is to evade detection defenses and escalate privileges by masking the malicious code under an existing legitimate process. Examples of approaches include but not limited to: dynamic-link library (DLL) injection, portable executable injection, thread execution hijacking, ptrace system calls, VDSO hijacking, function hooking, reflective code loading, and more.
  • Root/Jailbreak Detection Evasion via Hooking CAPEC-660 An adversary forces a non-restricted mobile application to load arbitrary code or code files, via Hooking, with the goal of evading Root/Jailbreak detection. Mobile device users often Root/Jailbreak their devices in order to gain administrative control over the mobile operating system and/or to install third-party mobile applications that are not provided by authorized application stores (e.g. Google Play Store and Apple App Store). Adversaries may further leverage these capabilities to escalate privileges or bypass access control on legitimate applications. Although many mobile applications check if a mobile device is Rooted/Jailbroken prior to authorized use of the application, adversaries may be able to "hook" code in order to circumvent these checks. Successfully evading Root/Jailbreak detection allows an adversary to execute administrative commands, obtain confidential data, impersonate legitimate users of the application, and more.
  • Repo Jacking CAPEC-695 An adversary takes advantage of the redirect property of directly linked Version Control System (VCS) repositories to trick users into incorporating malicious code into their applications.
  • Install Malicious Extension CAPEC-698 An adversary directly installs or tricks a user into installing a malicious extension into existing trusted software, with the goal of achieving a variety of negative technical impacts.

Vulnerable Configurations

  • cpe:2.3:a:vmware:spring_framework:3.0.0:-:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.0:-:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.0.0:rc1:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.0:rc1:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.0.0:rc2:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.0:rc2:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.0.0:rc3:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.0:rc3:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.0.0:milestone1:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.0:milestone1:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.0.0:milestone2:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.0:milestone2:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.0.0:milestone3:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.0:milestone3:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.0.0:milestone4:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.0:milestone4:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.0.7:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.0.7:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.1.0:-:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.1.0:-:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.1.0:rc1:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.1.0:rc1:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.1.0:rc2:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.1.0:rc2:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.1.0:milestone1:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.1.0:milestone1:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.1.0:milestone2:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.1.0:milestone2:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.0:-:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.0:-:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.0:rc1:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.0:rc1:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.0:rc2:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.0:rc2:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.0:rc2-a:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.0:rc2-a:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.0:milestone1:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.0:milestone1:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.0:milestone2:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.0:milestone2:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.1:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.1:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.2:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.2:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.3:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.3:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.4:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.4:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.5:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.5:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.6:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.6:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.7:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.7:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.8:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.8:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.9:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.9:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.10:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.10:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.11:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.11:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.12:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.12:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.13:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.13:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.14:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.14:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.15:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.15:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.16:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.16:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.17:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.17:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:3.2.18:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:3.2.18:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.0:-:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.0:-:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.0:rc1:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.0:rc1:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.0:rc2:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.0:rc2:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.0:milestone1:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.0:milestone1:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.0:milestone2:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.0:milestone2:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.0:milestone3:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.0:milestone3:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.7:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.7:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.8:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.8:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.0.9:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.0.9:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.1.0:-:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.1.0:-:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.1.0:rc1:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.1.0:rc1:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.1.0:rc2:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.1.0:rc2:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.1.6:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.1.6:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.1.7:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.1.7:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.1.8:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.1.8:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.1.9:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.1.9:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.2.0:-:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.2.0:-:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.2.0:rc1:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.2.0:rc1:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.2.0:rc2:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.2.0:rc2:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.2.0:rc3:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.2.0:rc3:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.2.1:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.2.1:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.2.2:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.2.2:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.2.3:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.2.3:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.2.4:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.2.4:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.2.5:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.2.5:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.2.6:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.2.6:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.2.7:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.2.7:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.2.8:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.2.8:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.2.9:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.2.9:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.0:-:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.0:-:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.0:rc1:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.0:rc1:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.0:rc2:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.0:rc2:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.7:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.7:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.8:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.8:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.9:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.9:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.10:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.10:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.11:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.11:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.12:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.12:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.13:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.13:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.14:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.14:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.15:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.15:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.16:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.16:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:4.3.17:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:4.3.17:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.0:-:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.0:-:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.0:rc1:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.0:rc1:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.0:rc2:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.0:rc2:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.0:rc3:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.0:rc3:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.0:rc4:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.0:rc4:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.0:milestone1:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.0:milestone1:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.0:milestone2:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.0:milestone2:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.0:milestone3:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.0:milestone3:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.0:milestone4:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.0:milestone4:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.0:milestone5:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.0:milestone5:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:vmware:spring_framework:5.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:vmware:spring_framework:5.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:agile_product_lifecycle_management:9.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:agile_product_lifecycle_management:9.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:agile_product_lifecycle_management:9.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:agile_product_lifecycle_management:9.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:agile_product_lifecycle_management:9.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:agile_product_lifecycle_management:9.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:application_testing_suite:12.5.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:application_testing_suite:12.5.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:application_testing_suite:13.1.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:application_testing_suite:13.1.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:application_testing_suite:13.2.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:application_testing_suite:13.2.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:application_testing_suite:13.3.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:application_testing_suite:13.3.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:communications_network_integrity:7.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:communications_network_integrity:7.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:communications_network_integrity:7.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:communications_network_integrity:7.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:communications_network_integrity:7.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:communications_network_integrity:7.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:communications_online_mediation_controller:6.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:communications_online_mediation_controller:6.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:communications_services_gatekeeper:6.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:communications_services_gatekeeper:6.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:communications_services_gatekeeper:6.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:communications_services_gatekeeper:6.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:communications_unified_inventory_management:7.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:communications_unified_inventory_management:7.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:communications_unified_inventory_management:7.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:communications_unified_inventory_management:7.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:communications_unified_inventory_management:7.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:communications_unified_inventory_management:7.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:communications_unified_inventory_management:7.4.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:communications_unified_inventory_management:7.4.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:endeca_information_discovery_integrator:3.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:endeca_information_discovery_integrator:3.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:endeca_information_discovery_integrator:3.2.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:endeca_information_discovery_integrator:3.2.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:enterprise_manager:13.2:*:*:*:*:mysql:*:*
    cpe:2.3:a:oracle:enterprise_manager:13.2:*:*:*:*:mysql:*:*
  • cpe:2.3:a:oracle:enterprise_manager_ops_center:12.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:enterprise_manager_ops_center:12.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:flexcube_private_banking:2.0.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:flexcube_private_banking:2.0.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:flexcube_private_banking:2.2.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:flexcube_private_banking:2.2.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:flexcube_private_banking:12.0.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:flexcube_private_banking:12.0.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:flexcube_private_banking:12.0.3.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:flexcube_private_banking:12.0.3.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:flexcube_private_banking:12.1.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:flexcube_private_banking:12.1.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:healthcare_master_person_index:3.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:healthcare_master_person_index:3.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:healthcare_master_person_index:4.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:healthcare_master_person_index:4.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:hospitality_guest_access:4.2.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:hospitality_guest_access:4.2.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:hospitality_guest_access:4.2.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:hospitality_guest_access:4.2.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:insurance_calculation_engine:11.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:insurance_calculation_engine:11.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:insurance_calculation_engine:11.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:insurance_calculation_engine:11.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:insurance_rules_palette:10.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:insurance_rules_palette:10.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:insurance_rules_palette:10.2:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:insurance_rules_palette:10.2:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:micros_lucas:2.9.5:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:micros_lucas:2.9.5:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:-:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:-:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:2.3.14:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:2.3.14:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.0.25:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.0.25:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.2:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.2:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.3:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.3:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.3.7856:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.3.7856:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.4:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.4:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.5:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.5:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.6:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.6:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.6.8003:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.6.8003:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.7:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.1.7:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.2:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.2:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.3:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.3:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.4:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.4:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.5:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.5:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.6:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.6:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.7:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.7:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.8:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.8:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.8.2223:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.8.2223:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.9:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.9:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.10:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.10:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.1182:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.2.1182:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.2:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.2:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.2.1162:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.2.1162:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.3:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.3:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.4:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.4:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.4.3247:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.4.3247:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.5:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.5:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.6.3293:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.6.3293:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.7:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.7:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.8:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.8:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.9:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.3.9:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.2:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.2:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.2.4181:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.2.4181:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.3:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.3:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.4:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.4:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.4.4226:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.4.4226:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.5:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.5:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.6:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.6:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.7:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.7:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.7.4297:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.7.4297:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.8:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.8:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.9:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.9:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.9.4237:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.9.4237:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.10:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:3.4.10:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.0.5135:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.0.5135:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.4:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.4:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.4.5235:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.4.5235:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.6:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.6:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.6.5281:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.6.5281:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.7:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.7:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.8:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.8:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.11.5331:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.11.5331:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.12:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.0.12:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:4.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:4.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:8.0.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:8.0.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:8.0.0.8131:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:8.0.0.8131:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:8.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:8.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:8.0.2:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:8.0.2:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:mysql_enterprise_monitor:8.0.2.8191:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:mysql_enterprise_monitor:8.0.2.8191:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:product_lifecycle_management:9.3.6:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:product_lifecycle_management:9.3.6:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:retail_advanced_inventory_planning:15.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:retail_advanced_inventory_planning:15.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:retail_clearance_optimization_engine:14.0.5:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:retail_clearance_optimization_engine:14.0.5:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:retail_customer_insights:15.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:retail_customer_insights:15.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:retail_customer_insights:16.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:retail_customer_insights:16.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:retail_markdown_optimization:13.4.4:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:retail_markdown_optimization:13.4.4:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:retail_predictive_application_server:14.0.3.26:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:retail_predictive_application_server:14.0.3.26:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:retail_predictive_application_server:14.1.3.37:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:retail_predictive_application_server:14.1.3.37:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:retail_predictive_application_server:15.0.3.100:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:retail_predictive_application_server:15.0.3.100:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:retail_predictive_application_server:16.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:retail_predictive_application_server:16.0:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:retail_service_backbone:16.0.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:retail_service_backbone:16.0.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:retail_xstore_point_of_service:7.1:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:retail_xstore_point_of_service:7.1:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:utilities_network_management_system:1.12.0.3:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:utilities_network_management_system:1.12.0.3:*:*:*:*:*:*:*
  • cpe:2.3:a:oracle:weblogic_server:12.2.1.3.0:*:*:*:*:*:*:*
    cpe:2.3:a:oracle:weblogic_server:12.2.1.3.0:*:*:*:*:*:*:*
  • cpe:2.3:o:debian:debian_linux:9.0:*:*:*:*:*:*:*
    cpe:2.3:o:debian:debian_linux:9.0:*:*:*:*:*:*:*

Protect Your Infrastructure against CVE-2018-11040: Combat Critical CVE Threats

Stay updated with real-time CVE vulnerabilities and take action to secure your systems. Enhance your cybersecurity posture with the latest threat intelligence and mitigation techniques. Develop the skills necessary to defend against CVEs and secure critical infrastructures. Join the top cybersecurity professionals safeguarding today's infrastructures.

Other 5 Recently Published CVEs Vulnerabilities

  • CVE-2025-2129 – A vulnerability was found in Mage AI 0.9.75. It has been classified as problematic. This affects an unknown part. The manipulation leads to insecur...
  • CVE-2025-2127 – A vulnerability was found in JoomlaUX JUX Real Estate 3.4.0 on Joomla. It has been classified as problematic. Affected is an unknown function of th...
  • CVE-2025-2126 – A vulnerability was found in JoomlaUX JUX Real Estate 3.4.0 on Joomla and classified as critical. This issue affects some unknown processing of the...
  • CVE-2025-2125 – A vulnerability has been found in Control iD RH iD 25.2.25.0 and classified as problematic. This vulnerability affects unknown code of the file /v2...
  • CVE-2025-2124 – A vulnerability, which was classified as problematic, was found in Control iD RH iD 25.2.25.0. This affects an unknown part of the file /v2/custome...