Find, fix and prevent vulnerabilities in your code.
critical severity
- Vulnerable module: babel-traverse
- Introduced through: babel-template@6.26.0
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › babel-template@6.26.0 › babel-traverse@6.26.0
Overview
Affected versions of this package are vulnerable to Incomplete List of Disallowed Inputs when using plugins that rely on the path.evaluate() or path.evaluateTruthy() internal Babel methods.
Note:
This is only exploitable if the attacker uses known affected plugins such as @babel/plugin-transform-runtime, @babel/preset-env when using its useBuiltIns option, and any "polyfill provider" plugin that depends on @babel/helper-define-polyfill-provider. No other plugins under the @babel/ namespace are impacted, but third-party plugins might be.
Users that only compile trusted code are not impacted.
Workaround
Users who are unable to upgrade the library can upgrade the affected plugins instead, to avoid triggering the vulnerable code path in affected @babel/traverse.
Remediation
There is no fixed version for babel-traverse.
References
high severity
new
- Vulnerable module: qs
- Introduced through: express@4.18.1
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › express@4.18.1 › qs@6.10.3Remediation: Upgrade to express@4.22.0.
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › express@4.18.1 › body-parser@1.20.0 › qs@6.10.3Remediation: Upgrade to express@4.22.0.
Overview
qs is a querystring parser that supports nesting and arrays, with a depth limit.
Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via improper enforcement of the arrayLimit option in bracket notation parsing. An attacker can exhaust server memory and cause application unavailability by submitting a large number of bracket notation parameters - like a[]=1&a[]=2 - in a single HTTP request.
PoC
const qs = require('qs');
const attack = 'a[]=' + Array(10000).fill('x').join('&a[]=');
const result = qs.parse(attack, { arrayLimit: 100 });
console.log(result.a.length); // Output: 10000 (should be max 100)
Remediation
Upgrade qs to version 6.14.1 or higher.
References
high severity
- Vulnerable module: webpack
- Introduced through: webpack@5.73.0
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › webpack@5.73.0Remediation: Upgrade to webpack@5.76.0.
Overview
Affected versions of this package are vulnerable to Sandbox Bypass when ImportParserPlugin.js mishandles magic comments to allow cross-realm object access. An attacker who controls a property of an untrusted object can access the real global object.
Remediation
Upgrade webpack to version 5.76.0 or higher.
References
high severity
- Vulnerable module: body-parser
- Introduced through: express@4.18.1
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › express@4.18.1 › body-parser@1.20.0Remediation: Upgrade to express@4.20.0.
Overview
Affected versions of this package are vulnerable to Asymmetric Resource Consumption (Amplification) via the extendedparser and urlencoded functions when the URL encoding process is enabled. An attacker can flood the server with a large number of specially crafted requests.
Remediation
Upgrade body-parser to version 1.20.3 or higher.
References
high severity
- Vulnerable module: webpack-dev-middleware
- Introduced through: webpack-dev-middleware@5.3.3
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › webpack-dev-middleware@5.3.3Remediation: Upgrade to webpack-dev-middleware@5.3.4.
Overview
Affected versions of this package are vulnerable to Path Traversal due to insufficient validation of the supplied URL address before returning the local file. This issue allows accessing any file on the developer's machine. The middleware can operate with either the physical filesystem or a virtualized in-memory memfs filesystem. When the writeToDisk configuration option is set to true, the physical filesystem is utilized. The getFilenameFromUrl method parses the URL and constructs the local file path by stripping the public path prefix from the URL and appending the unescaped path suffix to the outputPath. Since the URL is not unescaped and normalized automatically before calling the middleware, it is possible to use %2e and %2f sequences to perform a path traversal attack.
Notes:
This vulnerability is exploitable without any specific configurations, allowing an attacker to access and exfiltrate content from any file on the developer's machine.
If the development server is exposed on a public IP address or
0.0.0.0, an attacker on the local network can access the files without victim interaction.If the server permits access from third-party domains, a malicious link could lead to local file exfiltration when visited by the victim.
PoC
A blank project can be created containing the following configuration file webpack.config.js:
module.exports = { devServer: { devMiddleware: { writeToDisk: true } } };
When started, it is possible to access any local file, e.g. /etc/passwd:
$ curl localhost:8080/public/..%2f..%2f..%2f..%2f../etc/passwd
root:x:0:0:root:/root:/bin/bash
daemon:x:1:1:daemon:/usr/sbin:/usr/sbin/nologin
bin:x:2:2:bin:/bin:/usr/sbin/nologin
sys:x:3:3:sys:/dev:/usr/sbin/nologin
sync:x:4:65534:sync:/bin:/bin/sync
games:x:5:60:games:/usr/games:/usr/sbin/nologin
Remediation
Upgrade webpack-dev-middleware to version 5.3.4, 6.1.2, 7.1.0 or higher.
References
high severity
new
- Vulnerable module: react-router
- Introduced through: react-router@6.3.0 and react-router-dom@6.3.0
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › react-router@6.3.0Remediation: Upgrade to react-router@6.30.2.
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › react-router-dom@6.3.0 › react-router@6.3.0Remediation: Upgrade to react-router-dom@6.30.2.
Overview
Affected versions of this package are vulnerable to Open Redirect via the resolvePath() function when used with navigate, <Link>, or redirect. An attacker can cause the application to redirect users to external, potentially malicious URLs by supplying crafted paths.
Note:
This is only exploitable if untrusted content is passed into navigation paths in the application code.
Remediation
Upgrade react-router to version 6.30.2, 7.9.6 or higher.
References
medium severity
- Vulnerable module: path-to-regexp
- Introduced through: express@4.18.1
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › express@4.18.1 › path-to-regexp@0.1.7Remediation: Upgrade to express@4.20.0.
Overview
Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) when including multiple regular expression parameters in a single segment, which will produce the regular expression /^\/([^\/]+?)-([^\/]+?)\/?$/, if two parameters within a single segment are separated by a character other than a / or .. Poor performance will block the event loop and can lead to a DoS.
Note:
While the 8.0.0 release has completely eliminated the vulnerable functionality, prior versions that have received the patch to mitigate backtracking may still be vulnerable if custom regular expressions are used. So it is strongly recommended for regular expression input to be controlled to avoid malicious performance degradation in those versions. This behavior is enforced as of version 7.1.0 via the strict option, which returns an error if a dangerous regular expression is detected.
Workaround
This vulnerability can be avoided by using a custom regular expression for parameters after the first in a segment, which excludes - and /.
PoC
/a${'-a'.repeat(8_000)}/a
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:
AThe 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.DFinally, 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:
- CCC
- CC+C
- C+CC
- 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 path-to-regexp to version 0.1.10, 1.9.0, 3.3.0, 6.3.0, 8.0.0 or higher.
References
medium severity
- Vulnerable module: path-to-regexp
- Introduced through: express@4.18.1
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › express@4.18.1 › path-to-regexp@0.1.7Remediation: Upgrade to express@4.21.2.
Overview
Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) when including multiple regular expression parameters in a single segment, when the separator is not . (e.g. no /:a-:b). Poor performance will block the event loop and can lead to a DoS.
Note:
This issue is caused due to an incomplete fix for CVE-2024-45296.
Workarounds
This can be mitigated by avoiding using two parameters within a single path segment, when the separator is not . (e.g. no /:a-:b). Alternatively, the regex used for both parameters can be defined to ensure they do not overlap to allow backtracking.
PoC
/a${'-a'.repeat(8_000)}/a
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:
AThe 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.DFinally, 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:
- CCC
- CC+C
- C+CC
- 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 path-to-regexp to version 0.1.12 or higher.
References
medium severity
- Vulnerable module: cookie
- Introduced through: express@4.18.1 and universal-cookie@4.0.4
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › express@4.18.1 › cookie@0.5.0Remediation: Upgrade to express@4.21.1.
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › universal-cookie@4.0.4 › cookie@0.4.2Remediation: Upgrade to universal-cookie@7.2.1.
Overview
Affected versions of this package are vulnerable to Cross-site Scripting (XSS) via the cookie name, path, or domain, which can be used to set unexpected values to other cookie fields.
Workaround
Users who are not able to upgrade to the fixed version should avoid passing untrusted or arbitrary values for the cookie fields and ensure they are set by the application instead of user input.
Details
Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.
This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.
Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.
Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as < and > can be coded as > in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.
The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.
Types of attacks
There are a few methods by which XSS can be manipulated:
| Type | Origin | Description |
|---|---|---|
| Stored | Server | The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link. |
| Reflected | Server | The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser. |
| DOM-based | Client | The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data. |
| Mutated | The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters. |
Affected environments
The following environments are susceptible to an XSS attack:
- Web servers
- Application servers
- Web application environments
How to prevent
This section describes the top best practices designed to specifically protect your code:
- Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
- Convert special characters such as
?,&,/,<,>and spaces to their respective HTML or URL encoded equivalents. - Give users the option to disable client-side scripts.
- Redirect invalid requests.
- Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
- Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
- Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
Remediation
Upgrade cookie to version 0.7.0 or higher.
References
medium severity
- Vulnerable module: inflight
- Introduced through: @babel/cli@7.17.10, babel-plugin-lodash@3.3.4 and others
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › @babel/cli@7.17.10 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › babel-plugin-lodash@3.3.4 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › eslint-import-resolver-typescript@2.7.1 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › workbox-webpack-plugin@6.5.3 › workbox-build@6.5.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › babel-jest@28.1.1 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › clean-webpack-plugin@4.0.0 › del@4.1.1 › globby@6.1.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › clean-webpack-plugin@4.0.0 › del@4.1.1 › rimraf@2.7.1 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › rimraf@3.0.2 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › @jest/reporters@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-runtime@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-config@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › jest-config@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › babel-jest@28.1.1 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › eslint@8.18.0 › file-entry-cache@6.0.1 › flat-cache@3.2.0 › rimraf@3.0.2 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › rimraf@3.0.2 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › @jest/reporters@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-runtime@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-config@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-runtime@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-runtime@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › @jest/reporters@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-runtime@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-runner@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-config@28.1.3 › babel-jest@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › jest-config@28.1.3 › babel-jest@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-runtime@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › @jest/reporters@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-config@28.1.3 › babel-jest@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › jest-config@28.1.3 › babel-jest@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-runtime@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-resolve-dependencies@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-runtime@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-runner@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-config@28.1.3 › babel-jest@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-config@28.1.3 › babel-jest@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-runtime@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-resolve-dependencies@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-runtime@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-runtime@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-runtime@28.1.3 › @jest/globals@28.1.3 › @jest/expect@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › @jest/expect@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › @jest/expect@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-runtime@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-runtime@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-runtime@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › @jest/globals@28.1.3 › @jest/expect@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-runtime@28.1.3 › @jest/globals@28.1.3 › @jest/expect@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › @jest/expect@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-runtime@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-runtime@28.1.3 › @jest/globals@28.1.3 › @jest/expect@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-runtime@28.1.3 › @jest/globals@28.1.3 › @jest/expect@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › @jest/globals@28.1.3 › @jest/expect@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › @jest/globals@28.1.3 › @jest/expect@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › @jest/globals@28.1.3 › @jest/expect@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-circus@28.1.3 › jest-runtime@28.1.3 › @jest/globals@28.1.3 › @jest/expect@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › jest@28.1.1 › jest-cli@28.1.3 › @jest/core@28.1.3 › jest-config@28.1.3 › jest-runner@28.1.3 › jest-runtime@28.1.3 › @jest/globals@28.1.3 › @jest/expect@28.1.3 › jest-snapshot@28.1.3 › @jest/transform@28.1.3 › babel-plugin-istanbul@6.1.1 › test-exclude@6.0.0 › glob@7.2.3 › inflight@1.0.6
Overview
Affected versions of this package are vulnerable to Missing Release of Resource after Effective Lifetime via the makeres function due to improperly deleting keys from the reqs object after execution of callbacks. This behavior causes the keys to remain in the reqs object, which leads to resource exhaustion.
Exploiting this vulnerability results in crashing the node process or in the application crash.
Note: This library is not maintained, and currently, there is no fix for this issue. To overcome this vulnerability, several dependent packages have eliminated the use of this library.
To trigger the memory leak, an attacker would need to have the ability to execute or influence the asynchronous operations that use the inflight module within the application. This typically requires access to the internal workings of the server or application, which is not commonly exposed to remote users. Therefore, “Attack vector” is marked as “Local”.
PoC
const inflight = require('inflight');
function testInflight() {
let i = 0;
function scheduleNext() {
let key = `key-${i++}`;
const callback = () => {
};
for (let j = 0; j < 1000000; j++) {
inflight(key, callback);
}
setImmediate(scheduleNext);
}
if (i % 100 === 0) {
console.log(process.memoryUsage());
}
scheduleNext();
}
testInflight();
Remediation
There is no fixed version for inflight.
References
medium severity
- Vulnerable module: express
- Introduced through: express@4.18.1
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › express@4.18.1Remediation: Upgrade to express@4.19.2.
Overview
express is a minimalist web framework.
Affected versions of this package are vulnerable to Open Redirect due to the implementation of URL encoding using encodeurl before passing it to the location header. This can lead to unexpected evaluations of malformed URLs by common redirect allow list implementations in applications, allowing an attacker to bypass a properly implemented allow list and redirect users to malicious sites.
Remediation
Upgrade express to version 4.19.2, 5.0.0-beta.3 or higher.
References
medium severity
- Vulnerable module: serialize-javascript
- Introduced through: serialize-javascript@6.0.0 and workbox-webpack-plugin@6.5.3
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › serialize-javascript@6.0.0Remediation: Upgrade to serialize-javascript@6.0.2.
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › workbox-webpack-plugin@6.5.3 › workbox-build@6.5.3 › rollup-plugin-terser@7.0.2 › serialize-javascript@4.0.0
Overview
serialize-javascript is a package to serialize JavaScript to a superset of JSON that includes regular expressions and functions.
Affected versions of this package are vulnerable to Cross-site Scripting (XSS) due to unsanitized URLs. An Attacker can introduce unsafe HTML characters through non-http URLs.
PoC
const serialize = require('serialize-javascript');
let x = serialize({
x: new URL("x:</script>")
});
console.log(x)
Details
Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.
This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.
Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.
Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as < and > can be coded as > in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.
The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.
Types of attacks
There are a few methods by which XSS can be manipulated:
| Type | Origin | Description |
|---|---|---|
| Stored | Server | The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link. |
| Reflected | Server | The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser. |
| DOM-based | Client | The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data. |
| Mutated | The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters. |
Affected environments
The following environments are susceptible to an XSS attack:
- Web servers
- Application servers
- Web application environments
How to prevent
This section describes the top best practices designed to specifically protect your code:
- Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
- Convert special characters such as
?,&,/,<,>and spaces to their respective HTML or URL encoded equivalents. - Give users the option to disable client-side scripts.
- Redirect invalid requests.
- Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
- Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
- Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
Remediation
Upgrade serialize-javascript to version 6.0.2 or higher.
References
medium severity
- Vulnerable module: webpack
- Introduced through: webpack@5.73.0
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › webpack@5.73.0Remediation: Upgrade to webpack@5.94.0.
Overview
Affected versions of this package are vulnerable to Cross-site Scripting (XSS) via DOM clobbering in the AutoPublicPathRuntimeModule class. Non-script HTML elements with unsanitized attributes such as name and id can be leveraged to execute code in the victim's browser. An attacker who can control such elements on a page that includes Webpack-generated files, can cause subsequent scripts to be loaded from a malicious domain.
PoC
<!DOCTYPE html>
<html>
<head>
<title>Webpack Example</title>
<!-- Attacker-controlled Script-less HTML Element starts--!>
<img name="currentScript" src="https://attacker.controlled.server/"></img>
<!-- Attacker-controlled Script-less HTML Element ends--!>
</head>
<script src="./dist/webpack-gadgets.bundle.js"></script>
<body>
</body>
</html>
Details
Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.
This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.
Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.
Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as < and > can be coded as > in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.
The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.
Types of attacks
There are a few methods by which XSS can be manipulated:
| Type | Origin | Description |
|---|---|---|
| Stored | Server | The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link. |
| Reflected | Server | The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser. |
| DOM-based | Client | The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data. |
| Mutated | The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters. |
Affected environments
The following environments are susceptible to an XSS attack:
- Web servers
- Application servers
- Web application environments
How to prevent
This section describes the top best practices designed to specifically protect your code:
- Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
- Convert special characters such as
?,&,/,<,>and spaces to their respective HTML or URL encoded equivalents. - Give users the option to disable client-side scripts.
- Redirect invalid requests.
- Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
- Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
- Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
Remediation
Upgrade webpack to version 5.94.0 or higher.
References
medium severity
- Vulnerable module: express
- Introduced through: express@4.18.1
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › express@4.18.1Remediation: Upgrade to express@4.20.0.
Overview
express is a minimalist web framework.
Affected versions of this package are vulnerable to Cross-site Scripting due to improper handling of user input in the response.redirect method. An attacker can execute arbitrary code by passing malicious input to this method.
Note
To exploit this vulnerability, the following conditions are required:
The attacker should be able to control the input to
response.redirect()express must not redirect before the template appears
the browser must not complete redirection before:
the user must click on the link in the template
Remediation
Upgrade express to version 4.20.0, 5.0.0 or higher.
References
medium severity
- Vulnerable module: on-headers
- Introduced through: compression@1.7.4
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › compression@1.7.4 › on-headers@1.0.2Remediation: Upgrade to compression@1.8.1.
Overview
Affected versions of this package are vulnerable to Improper Handling of Unexpected Data Type via the response.writeHead function. An attacker can manipulate HTTP response headers by passing an array to this function, potentially leading to unintended disclosure or modification of header information.
Workaround
This vulnerability can be mitigated by passing an object to response.writeHead() instead of an array.
Remediation
Upgrade on-headers to version 1.1.0 or higher.
References
medium severity
- Module: axe-core
- Introduced through: eslint-plugin-jsx-a11y@6.5.1
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › eslint-plugin-jsx-a11y@6.5.1 › axe-core@4.11.1
MPL-2.0 license
low severity
- Vulnerable module: sirv
- Introduced through: webpack-bundle-analyzer@4.5.0
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › webpack-bundle-analyzer@4.5.0 › sirv@1.0.19
Overview
sirv is a The optimized & lightweight middleware for serving requests to static assets
Affected versions of this package are vulnerable to Directory Traversal via the viaLocal function, which uses a dirname prefix. An attacker can access files outside the intended public directory by sending crafted requests that exploit symlinks and naming similarities, bypassing access restrictions.
Note: This is only exploitable if the server is explicitly exposed to the network using the --host flag or the server.host configuration option, the public directory feature is enabled, and there are symlinks in a public directory.
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 sirv to version 3.0.2 or higher.
References
low severity
- Vulnerable module: send
- Introduced through: express@4.18.1
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › express@4.18.1 › send@0.18.0Remediation: Upgrade to express@4.20.0.
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › express@4.18.1 › serve-static@1.15.0 › send@0.18.0Remediation: Upgrade to express@4.21.0.
Overview
send is a Better streaming static file server with Range and conditional-GET support
Affected versions of this package are vulnerable to Cross-site Scripting due to improper user input sanitization passed to the SendStream.redirect() function, which executes untrusted code. An attacker can execute arbitrary code by manipulating the input parameters to this method.
Note:
Exploiting this vulnerability requires the following:
The attacker needs to control the input to
response.redirect()Express MUST NOT redirect before the template appears
The browser MUST NOT complete redirection before
The user MUST click on the link in the template
Details
Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.
This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.
Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.
Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as < and > can be coded as > in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.
The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.
Types of attacks
There are a few methods by which XSS can be manipulated:
| Type | Origin | Description |
|---|---|---|
| Stored | Server | The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link. |
| Reflected | Server | The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser. |
| DOM-based | Client | The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data. |
| Mutated | The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters. |
Affected environments
The following environments are susceptible to an XSS attack:
- Web servers
- Application servers
- Web application environments
How to prevent
This section describes the top best practices designed to specifically protect your code:
- Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
- Convert special characters such as
?,&,/,<,>and spaces to their respective HTML or URL encoded equivalents. - Give users the option to disable client-side scripts.
- Redirect invalid requests.
- Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
- Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
- Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
Remediation
Upgrade send to version 0.19.0, 1.1.0 or higher.
References
low severity
- Vulnerable module: serve-static
- Introduced through: express@4.18.1
Detailed paths
-
Introduced through: @pawjs/pawjs@Atyantik/pawjs#090c39e37f7adf571ded9e933ff71004c32fea7c › express@4.18.1 › serve-static@1.15.0Remediation: Upgrade to express@4.20.0.
Overview
serve-static is a server.
Affected versions of this package are vulnerable to Cross-site Scripting due to improper sanitization of user input in the redirect function. An attacker can manipulate the redirection process by injecting malicious code into the input.
Note
To exploit this vulnerability, the following conditions are required:
The attacker should be able to control the input to
response.redirect()express must not redirect before the template appears
the browser must not complete redirection before:
the user must click on the link in the template
Details
Cross-site scripting (or XSS) is a code vulnerability that occurs when an attacker “injects” a malicious script into an otherwise trusted website. The injected script gets downloaded and executed by the end user’s browser when the user interacts with the compromised website.
This is done by escaping the context of the web application; the web application then delivers that data to its users along with other trusted dynamic content, without validating it. The browser unknowingly executes malicious script on the client side (through client-side languages; usually JavaScript or HTML) in order to perform actions that are otherwise typically blocked by the browser’s Same Origin Policy.
Injecting malicious code is the most prevalent manner by which XSS is exploited; for this reason, escaping characters in order to prevent this manipulation is the top method for securing code against this vulnerability.
Escaping means that the application is coded to mark key characters, and particularly key characters included in user input, to prevent those characters from being interpreted in a dangerous context. For example, in HTML, < can be coded as < and > can be coded as > in order to be interpreted and displayed as themselves in text, while within the code itself, they are used for HTML tags. If malicious content is injected into an application that escapes special characters and that malicious content uses < and > as HTML tags, those characters are nonetheless not interpreted as HTML tags by the browser if they’ve been correctly escaped in the application code and in this way the attempted attack is diverted.
The most prominent use of XSS is to steal cookies (source: OWASP HttpOnly) and hijack user sessions, but XSS exploits have been used to expose sensitive information, enable access to privileged services and functionality and deliver malware.
Types of attacks
There are a few methods by which XSS can be manipulated:
| Type | Origin | Description |
|---|---|---|
| Stored | Server | The malicious code is inserted in the application (usually as a link) by the attacker. The code is activated every time a user clicks the link. |
| Reflected | Server | The attacker delivers a malicious link externally from the vulnerable web site application to a user. When clicked, malicious code is sent to the vulnerable web site, which reflects the attack back to the user’s browser. |
| DOM-based | Client | The attacker forces the user’s browser to render a malicious page. The data in the page itself delivers the cross-site scripting data. |
| Mutated | The attacker injects code that appears safe, but is then rewritten and modified by the browser, while parsing the markup. An example is rebalancing unclosed quotation marks or even adding quotation marks to unquoted parameters. |
Affected environments
The following environments are susceptible to an XSS attack:
- Web servers
- Application servers
- Web application environments
How to prevent
This section describes the top best practices designed to specifically protect your code:
- Sanitize data input in an HTTP request before reflecting it back, ensuring all data is validated, filtered or escaped before echoing anything back to the user, such as the values of query parameters during searches.
- Convert special characters such as
?,&,/,<,>and spaces to their respective HTML or URL encoded equivalents. - Give users the option to disable client-side scripts.
- Redirect invalid requests.
- Detect simultaneous logins, including those from two separate IP addresses, and invalidate those sessions.
- Use and enforce a Content Security Policy (source: Wikipedia) to disable any features that might be manipulated for an XSS attack.
- Read the documentation for any of the libraries referenced in your code to understand which elements allow for embedded HTML.
Remediation
Upgrade serve-static to version 1.16.0, 2.1.0 or higher.