CVE-2020-1609 Vulnerability Analysis & Exploit Details

CVE-2020-1609
Vulnerability Scoring

8.8
/10
Severe Risk

Cybersecurity professionals consider CVE-2020-1609 an immediate threat requiring urgent mitigation.

Attack Complexity Details

  • Attack Complexity: Low
    Exploits can be performed without significant complexity or special conditions.
  • Attack Vector: Adjacent_network
    Attack Vector Under Analysis
  • 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-2020-1609 Details

Status: Analyzed

Last updated: 🕖 22 Jan 2020, 19:20 UTC
Originally published on: 🕘 15 Jan 2020, 09:15 UTC

Time between publication and last update: 7 days

CVSS Release: version 3

CVSS3 Source

nvd@nist.gov

CVSS3 Type

Primary

CVSS3 Vector

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

CVE-2020-1609 Vulnerability Summary

CVE-2020-1609: When a device using Juniper Network's Dynamic Host Configuration Protocol Daemon (JDHCPD) process on Junos OS or Junos OS Evolved which is configured in relay mode it vulnerable to an attacker sending crafted IPv6 packets who may then arbitrarily execute commands as root on the target device. This issue affects IPv6 JDHCPD services. This issue affects: Juniper Networks Junos OS: 15.1 versions prior to 15.1R7-S6; 15.1X49 versions prior to 15.1X49-D200; 15.1X53 versions prior to 15.1X53-D592; 16.1 versions prior to 16.1R7-S6; 16.2 versions prior to 16.2R2-S11; 17.1 versions prior to 17.1R2-S11, 17.1R3-S1; 17.2 versions prior to 17.2R2-S8, 17.2R3-S3; 17.3 versions prior to 17.3R3-S6; 17.4 versions prior to 17.4R2-S7, 17.4R3; 18.1 versions prior to 18.1R3-S8; 18.2 versions prior to 18.2R3-S2; 18.2X75 versions prior to 18.2X75-D60; 18.3 versions prior to 18.3R1-S6, 18.3R2-S2, 18.3R3; 18.4 versions prior to 18.4R1-S5, 18.4R2-S3, 18.4R3; 19.1 versions prior to 19.1R1-S3, 19.1R2; 19.2 versions prior to 19.2R1-S3, 19.2R2*. and All versions prior to 19.3R1 on Junos OS Evolved. This issue do not affect versions of Junos OS prior to 15.1, or JDHCPD operating as a local server in non-relay mode.

Assessing the Risk of CVE-2020-1609

Access Complexity Graph

The exploitability of CVE-2020-1609 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-2020-1609

With low attack complexity and no required privileges, CVE-2020-1609 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-2020-1609, 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-2020-1609, 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-2020-1609 can result in unauthorized access to sensitive data, severely compromising data privacy.
  • Integrity: High
    CVE-2020-1609 could allow unauthorized modifications to data, potentially affecting system reliability and trust.
  • Availability: High
    CVE-2020-1609 can disrupt system operations, potentially causing complete denial of service (DoS).

Exploit Prediction Scoring System (EPSS)

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

EPSS Score: 0.066% (probability of exploit)

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

CVE-2020-1609 References

External References

CWE Common Weakness Enumeration

CWE-78

CAPEC Common Attack Pattern Enumeration and Classification

  • Command Line Execution through SQL Injection CAPEC-108 An attacker uses standard SQL injection methods to inject data into the command line for execution. This could be done directly through misuse of directives such as MSSQL_xp_cmdshell or indirectly through injection of data into the database that would be interpreted as shell commands. Sometime later, an unscrupulous backend application (or could be part of the functionality of the same application) fetches the injected data stored in the database and uses this data as command line arguments without performing proper validation. The malicious data escapes that data plane by spawning new commands to be executed on the host.
  • Command Delimiters CAPEC-15 An attack of this type exploits a programs' vulnerabilities that allows an attacker's commands to be concatenated onto a legitimate command with the intent of targeting other resources such as the file system or database. The system that uses a filter or denylist input validation, as opposed to allowlist validation is vulnerable to an attacker who predicts delimiters (or combinations of delimiters) not present in the filter or denylist. As with other injection attacks, the attacker uses the command delimiter payload as an entry point to tunnel through the application and activate additional attacks through SQL queries, shell commands, network scanning, and so on.
  • Exploiting Multiple Input Interpretation Layers CAPEC-43 An attacker supplies the target software with input data that contains sequences of special characters designed to bypass input validation logic. This exploit relies on the target making multiples passes over the input data and processing a "layer" of special characters with each pass. In this manner, the attacker can disguise input that would otherwise be rejected as invalid by concealing it with layers of special/escape characters that are stripped off by subsequent processing steps. The goal is to first discover cases where the input validation layer executes before one or more parsing layers. That is, user input may go through the following logic in an application: <parser1> --> <input validator> --> <parser2>. In such cases, the attacker will need to provide input that will pass through the input validator, but after passing through parser2, will be converted into something that the input validator was supposed to stop.
  • Argument Injection CAPEC-6 An attacker changes the behavior or state of a targeted application through injecting data or command syntax through the targets use of non-validated and non-filtered arguments of exposed services or methods.
  • OS Command Injection CAPEC-88 In this type of an attack, an adversary injects operating system commands into existing application functions. An application that uses untrusted input to build command strings is vulnerable. An adversary can leverage OS command injection in an application to elevate privileges, execute arbitrary commands and compromise the underlying operating system.

Vulnerable Configurations

  • cpe:2.3:o:juniper:junos:15.1:r7:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1:r7:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1:r7-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1:r7-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1:r7-s2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1:r7-s2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1:r7-s3:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1:r7-s3:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1:r7-s4:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1:r7-s4:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1:r7-s5:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1:r7-s5:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d10:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d10:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d110:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d110:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d140:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d140:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d150:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d150:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d170:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d170:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d180:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d180:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d190:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d190:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d20:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d20:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d30:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d30:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d35:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d35:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d40:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d40:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d50:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d50:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d55:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d55:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d60:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d60:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d65:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d65:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d70:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d70:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d75:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d75:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d80:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d80:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x49:d90:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x49:d90:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d20:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d20:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d21:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d21:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d210:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d210:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d25:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d25:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d30:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d30:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d31:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d31:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d32:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d32:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d33:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d33:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d34:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d34:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d40:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d40:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d45:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d45:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d470:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d470:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d495:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d495:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d56:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d56:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d591:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d591:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d60:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d60:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d61:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d61:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d62:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d62:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d63:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d63:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d65:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d65:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:15.1x53:d70:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:15.1x53:d70:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.1:-:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.1:-:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.1:r1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.1:r1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.1:r2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.1:r2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.1:r3:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.1:r3:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.1:r3-s10:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.1:r3-s10:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.1:r4:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.1:r4:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.1:r5-s4:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.1:r5-s4:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.1:r6-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.1:r6-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.1:r7:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.1:r7:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.1:r7-s4:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.1:r7-s4:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.1:r7-s5:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.1:r7-s5:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.2:-:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.2:-:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.2:r1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.2:r1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.2:r2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.2:r2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.2:r2-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.2:r2-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.2:r2-s2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.2:r2-s2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.2:r2-s5:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.2:r2-s5:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.2:r2-s6:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.2:r2-s6:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.2:r2-s7:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.2:r2-s7:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.2:r2-s8:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.2:r2-s8:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:16.2:r2-s9:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:16.2:r2-s9:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.1:-:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.1:-:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.1:r1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.1:r1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.1:r2-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.1:r2-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.1:r2-s10:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.1:r2-s10:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.1:r2-s2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.1:r2-s2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.1:r2-s3:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.1:r2-s3:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.1:r2-s4:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.1:r2-s4:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.1:r2-s5:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.1:r2-s5:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.1:r2-s6:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.1:r2-s6:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.1:r2-s7:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.1:r2-s7:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.1:r3:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.1:r3:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.2:-:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.2:-:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.2:r1-s2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.2:r1-s2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.2:r1-s4:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.2:r1-s4:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.2:r1-s7:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.2:r1-s7:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.2:r1-s8:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.2:r1-s8:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.2:r2-s6:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.2:r2-s6:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.2:r2-s7:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.2:r2-s7:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.2:r3-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.2:r3-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.2:r3-s2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.2:r3-s2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.3:-:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.3:-:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.3:r1-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.3:r1-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.3:r2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.3:r2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.3:r2-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.3:r2-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.3:r2-s2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.3:r2-s2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.3:r3-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.3:r3-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.3:r3-s2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.3:r3-s2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.3:r3-s3:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.3:r3-s3:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.3:r3-s4:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.3:r3-s4:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.3:r3-s5:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.3:r3-s5:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.4:-:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.4:-:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.4:r1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.4:r1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.4:r1-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.4:r1-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.4:r1-s2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.4:r1-s2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.4:r1-s4:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.4:r1-s4:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.4:r1-s6:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.4:r1-s6:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.4:r1-s7:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.4:r1-s7:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.4:r2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.4:r2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.4:r2-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.4:r2-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.4:r2-s3:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.4:r2-s3:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.4:r2-s4:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.4:r2-s4:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.4:r2-s5:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.4:r2-s5:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:17.4:r2-s6:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:17.4:r2-s6:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.1:r3-s5:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.1:r3-s5:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.1:r3-s6:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.1:r3-s6:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.1:r3-s7:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.1:r3-s7:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.2:-:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.2:-:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.2:r1-s5:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.2:r1-s5:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.2:r2-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.2:r2-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.2:r2-s2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.2:r2-s2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.2:r2-s3:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.2:r2-s3:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.2:r2-s4:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.2:r2-s4:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.2:r3:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.2:r3:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.2:r3-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.2:r3-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.2x75:-:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.2x75:-:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.2x75:d20:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.2x75:d20:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.2x75:d40:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.2x75:d40:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.3:-:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.3:-:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.3:r1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.3:r1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.3:r1-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.3:r1-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.3:r1-s2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.3:r1-s2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.3:r1-s3:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.3:r1-s3:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.3:r1-s4:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.3:r1-s4:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.3:r1-s5:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.3:r1-s5:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.3:r2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.3:r2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.4:-:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.4:-:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.4:r1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.4:r1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.4:r1-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.4:r1-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.4:r1-s2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.4:r1-s2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.4:r1-s3:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.4:r1-s3:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.4:r1-s4:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.4:r1-s4:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:18.4:r2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:18.4:r2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:19.1:r1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:19.1:r1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:19.1:r1-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:19.1:r1-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:19.1:r1-s2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:19.1:r1-s2:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:19.2:r1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:19.2:r1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:19.2:r1-s1:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:19.2:r1-s1:*:*:*:*:*:*
  • cpe:2.3:o:juniper:junos:19.2:r1-s2:*:*:*:*:*:*
    cpe:2.3:o:juniper:junos:19.2:r1-s2:*:*:*:*:*:*

Protect Your Infrastructure against CVE-2020-1609: 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...