Vulnerabilities

5 via 5 paths

Dependencies

74

Source

GitHub

Commit

920c5351

Find, fix and prevent vulnerabilities in your code.

Severity
  • 1
  • 4
Status
  • 5
  • 0
  • 0

high severity
new

Improper Restriction of XML External Entity Reference ('XXE')

  • Vulnerable module: rexml
  • Introduced through: rubocop@1.35.1

Detailed paths

  • Introduced through: shinesolutions/puppet-aem-resources@shinesolutions/puppet-aem-resources#920c5351e41b31c97c0efbb9733b7955a84b7a1b rubocop@1.35.1 rexml@3.2.5
    Remediation: Upgrade to rubocop@1.35.1.

Overview

rexml is an An XML toolkit for Ruby.

Affected versions of this package are vulnerable to Improper Restriction of XML External Entity Reference ('XXE') via tree parser APIs like REXML::Document.new function. An attacker can cause the application to consume excessive resources by submitting specially crafted XML documents with many deep elements that have the same local name attributes.

Note:

This is only exploitable if a tree parser API is used to parse untrusted XMLs.

Remediation

Upgrade rexml to version 3.3.6 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: rexml
  • Introduced through: rubocop@1.35.1

Detailed paths

  • Introduced through: shinesolutions/puppet-aem-resources@shinesolutions/puppet-aem-resources#920c5351e41b31c97c0efbb9733b7955a84b7a1b rubocop@1.35.1 rexml@3.2.5
    Remediation: Upgrade to rubocop@1.35.1.

Overview

rexml is an An XML toolkit for Ruby.

Affected versions of this package are vulnerable to Denial of Service (DoS) via the REXML gem, when parsing an XML document that has many specific characters such as whitespace character,>] and ]>.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade rexml to version 3.3.3 or higher.

References

medium severity

Uncontrolled Resource Consumption ('Resource Exhaustion')

  • Vulnerable module: rexml
  • Introduced through: rubocop@1.35.1

Detailed paths

  • Introduced through: shinesolutions/puppet-aem-resources@shinesolutions/puppet-aem-resources#920c5351e41b31c97c0efbb9733b7955a84b7a1b rubocop@1.35.1 rexml@3.2.5
    Remediation: Upgrade to rubocop@1.35.1.

Overview

rexml is an An XML toolkit for Ruby.

Affected versions of this package are vulnerable to Uncontrolled Resource Consumption ('Resource Exhaustion') via the SAX2 or pull parser API. An attacker can cause the application to consume excessive resources leading to a denial of service by submitting specially crafted XML documents that exploit entity expansions.

PoC

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE member [
  <!ENTITY a "&b;&b;&b;&b;&b;&b;&b;&b;&b;&b;">
  <!ENTITY b "&c;&c;&c;&c;&c;&c;&c;&c;&c;&c;">
  <!ENTITY c "&d;&d;&d;&d;&d;&d;&d;&d;&d;&d;">
  <!ENTITY d "&e;&e;&e;&e;&e;&e;&e;&e;&e;&e;">
  <!ENTITY e "&f;&f;&f;&f;&f;&f;&f;&f;&f;&f;">
  <!ENTITY f "&g;&g;&g;&g;&g;&g;&g;&g;&g;&g;">
  <!ENTITY g "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx">
]>
<member>
&a;
</member>

Remediation

Upgrade rexml to version 3.3.3 or higher.

References

medium severity

Denial of Service (DoS)

  • Vulnerable module: rexml
  • Introduced through: rubocop@1.35.1

Detailed paths

  • Introduced through: shinesolutions/puppet-aem-resources@shinesolutions/puppet-aem-resources#920c5351e41b31c97c0efbb9733b7955a84b7a1b rubocop@1.35.1 rexml@3.2.5
    Remediation: Upgrade to rubocop@1.35.1.

Overview

rexml is an An XML toolkit for Ruby.

Affected versions of this package are vulnerable to Denial of Service (DoS) through the XML parsing process. An attacker can cause a denial of service by sending specially crafted XML documents that contain many specific characters such as <, 0, and %>.

This vulnerability is exploitable if the application is configured to parse untrusted XML documents.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its intended and legitimate users.

Unlike other vulnerabilities, DoS attacks usually do not aim at breaching security. Rather, they are focused on making websites and services unavailable to genuine users resulting in downtime.

One popular Denial of Service vulnerability is DDoS (a Distributed Denial of Service), an attack that attempts to clog network pipes to the system by generating a large volume of traffic from many machines.

When it comes to open source libraries, DoS vulnerabilities allow attackers to trigger such a crash or crippling of the service by using a flaw either in the application code or from the use of open source libraries.

Two common types of DoS vulnerabilities:

  • High CPU/Memory Consumption- An attacker sending crafted requests that could cause the system to take a disproportionate amount of time to process. For example, commons-fileupload:commons-fileupload.

  • Crash - An attacker sending crafted requests that could cause the system to crash. For Example, npm ws package

Remediation

Upgrade rexml to version 3.3.2 or higher.

References

medium severity

Uncontrolled Resource Consumption

  • Vulnerable module: rexml
  • Introduced through: rubocop@1.35.1

Detailed paths

  • Introduced through: shinesolutions/puppet-aem-resources@shinesolutions/puppet-aem-resources#920c5351e41b31c97c0efbb9733b7955a84b7a1b rubocop@1.35.1 rexml@3.2.5
    Remediation: Upgrade to rubocop@1.35.1.

Overview

rexml is an An XML toolkit for Ruby.

Affected versions of this package are vulnerable to Uncontrolled Resource Consumption when parsing an XML that has many <s in an attribute value. An attacker can cause a denial of service by exploiting this behavior.

Workaround

This vulnerability can be mitigated by not parsing untrusted XMLs.

Remediation

Upgrade rexml to version 3.2.7 or higher.

References