Vulnerabilities

13 via 14 paths

Dependencies

311

Source

GitHub

Find, fix and prevent vulnerabilities in your code.

Issue type
  • 13
  • 13
Severity
  • 7
  • 19
Status
  • 26
  • 0
  • 0

high severity
new

Prototype Pollution

  • Vulnerable module: toml
  • Introduced through: @indic-transliteration/sanscript@1.3.3

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @indic-transliteration/sanscript@1.3.3 toml@2.3.6

Overview

Affected versions of this package are vulnerable to Prototype Pollution in the deepRef function of lib/compiler.js, which traverses through a scalar value into the prototype chain, and whose containment guard is missed because currentPath inconsistently holds arrays that coerce to comma-separated strings ("a,b") while the guard checks dot-separated paths ("a.b"). An attacker can inject arbitrary properties onto Object.prototype, affecting every object in the process, by supplying a TOML document whose table path steps through a scalar into __proto__.__proto__, for example [a.b.y.__proto__.__proto__] after y = 1. This requires the application to parse attacker-controlled TOML.

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 toml to version 4.1.2 or higher.

References

high severity
new

Missing Release of Memory after Effective Lifetime

  • Vulnerable module: compression
  • Introduced through: serve@14.2.6

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music serve@14.2.6 compression@1.8.1

Overview

Affected versions of this package are vulnerable to Missing Release of Memory after Effective Lifetime via improper cleanup of the zlib compression stream when a client disconnects before the response finishes. The onResponseClose handler was absent, leaving native zlib handles unreleased whenever a connection closed mid-response. An attacker can exhaust server memory or file-descriptor resources by repeatedly opening connections and disconnecting before response completion, causing a denial of service.

Remediation

Upgrade compression to version 1.8.2 or higher.

References

high severity

Uncontrolled Recursion

  • Vulnerable module: deepmerge-ts
  • Introduced through: deepmerge-ts@7.1.5 and html-to-text@10.0.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music deepmerge-ts@7.1.5
    Remediation: Upgrade to deepmerge-ts@8.0.0.
  • Introduced through: youtube-music@th-ch/youtube-music html-to-text@10.0.0 deepmerge-ts@7.1.6
    Remediation: Upgrade to html-to-text@10.0.1.

Overview

deepmerge-ts is a Deeply merge 2 or more objects respecting type information.

Affected versions of this package are vulnerable to Uncontrolled Recursion via the deepmerge and deepmergeInto functions. An attacker can cause a process crash or denial of service by supplying crafted recursive object graphs that trigger unbounded recursion and stack exhaustion.

Remediation

Upgrade deepmerge-ts to version 8.0.0 or higher.

References

high severity
new

Directory Traversal

  • Vulnerable module: hono
  • Introduced through: hono@4.12.27

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music hono@4.12.27
    Remediation: Upgrade to hono@4.13.5.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Directory Traversal in the toSSG() static site generation function, whose path normalization does not fully collapse runs of consecutive .. segments and treats output directories that differ only in how they are rooted as equivalent. An attacker can cause build output to be written outside the intended output directory by supplying a route parameter with enough .. sequences that reaches ssgParams from an untrusted source.

Note: This affects build-time static site generation only, not request-time routing, and requires the application to build pages from ssgParams values sourced from untrusted origins such as a CMS, API, or user submissions.

Note: This is a bypass of the fix for the vulnerability described in CVE-2026-39408.

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 hono to version 4.13.5 or higher.

References

high severity
new

Uncontrolled Recursion

  • Vulnerable module: toml
  • Introduced through: @indic-transliteration/sanscript@1.3.3

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @indic-transliteration/sanscript@1.3.3 toml@2.3.6

Overview

Affected versions of this package are vulnerable to Uncontrolled Recursion in lib/parser.js, where the mutually recursive peg$parsevalue(), peg$parsearray(), and peg$parseinline_table_entry() functions recurse to the input's nesting depth with no depth limit. An attacker can crash the process with a RangeError: Maximum call stack size exceeded by supplying a deeply nested TOML document, such as a ~6 KB payload nested about 2,500 levels (a=[[[...]]]). This requires the application to call toml.parse() on untrusted input, and error handlers that catch only SyntaxError do not contain the resulting RangeError, which is not a SyntaxError subclass.

Remediation

Upgrade toml to version 4.2.0 or higher.

References

high severity
new

HTTP Request Smuggling

  • Vulnerable module: hono
  • Introduced through: hono@4.12.27

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music hono@4.12.27
    Remediation: Upgrade to hono@4.13.5.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to HTTP Request Smuggling in its query parsing helpers, which do not terminate at the URL fragment and parse a ? appearing after a # as the start of the query string. An attacker can smuggle parameters past upstream allow/deny lists and validation, poison cache entries with unobserved parameters, or achieve stored XSS in cached HTML, by placing query parameters after a # fragment so browsers, new URL(), and reverse proxies ignore them while the query helpers still read them. This requires a literal # in the request URL to reach the application, and deployments behind intermediaries that strip fragments or runtimes that normalize URLs, such as Cloudflare Workers, are unaffected.

Remediation

Upgrade hono to version 4.13.5 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: @hono/node-server
  • Introduced through: @hono/node-server@2.0.6

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @hono/node-server@2.0.6
    Remediation: Upgrade to @hono/node-server@2.0.10.

Overview

@hono/node-server is a Node.js Adapter for Hono

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via the upgradeWebSocket. An attacker can cause unbounded memory consumption by sending repeated WebSocket upgrade requests with missing or malformed Sec-WebSocket-Key headers, resulting in permanent retention of request objects and eventual exhaustion of system memory.

Remediation

Upgrade @hono/node-server to version 2.0.10 or higher.

References

medium severity

Inefficient Algorithmic Complexity

  • Vulnerable module: hono
  • Introduced through: hono@4.12.27

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music hono@4.12.27
    Remediation: Upgrade to hono@4.12.34.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Inefficient Algorithmic Complexity via the languageDetector middleware. An attacker can cause excessive CPU consumption and block unrelated requests by sending crafted language tags with a large number of hyphen-separated subtags.

Remediation

Upgrade hono to version 4.12.34 or higher.

References

medium severity
new

Asymmetric Resource Consumption (Amplification)

  • Vulnerable module: hono
  • Introduced through: hono@4.12.27

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music hono@4.12.27
    Remediation: Upgrade to hono@4.13.5.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Asymmetric Resource Consumption (Amplification) in the parseBody() function, which expands dot-separated form field names into nested objects without limiting nesting depth or total object creation. An attacker can exhaust the JavaScript heap and terminate the server process by sending concurrent requests with deeply dotted field names, since a body within the normal size limit allocates an object graph far larger than the request itself. This requires the endpoint to have dot-notation parsing enabled, which is off by default.

Remediation

Upgrade hono to version 4.13.5 or higher.

References

medium severity

HTTP Request Smuggling

  • Vulnerable module: hono
  • Introduced through: hono@4.12.27

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music hono@4.12.27
    Remediation: Upgrade to hono@4.12.34.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to HTTP Request Smuggling in the proxy process. An attacker can access connection-scoped or internal metadata by sending requests to an application that proxies responses from an origin specifying custom headers in the Connection response header. This is only exploitable if the origin server includes additional, non-standard headers in the Connection response header beyond the standard hop-by-hop headers.

Remediation

Upgrade hono to version 4.12.34 or higher.

References

medium severity

Regular Expression Denial of Service (ReDoS)

  • Vulnerable module: hono
  • Introduced through: hono@4.12.27

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music hono@4.12.27
    Remediation: Upgrade to hono@4.12.34.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Regular Expression Denial of Service (ReDoS) in the cors middleware during the parsing of the Access-Control-Request-Headers header via a regular expression with quadratic runtime complexity. An attacker can cause excessive CPU consumption and degrade or deny service by sending specially crafted preflight requests containing long runs of whitespace in the header value.

Note: This is only exploitable if the allowHeaders option is left unset or empty in the middleware configuration.

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 hono to version 4.12.34 or higher.

References

medium severity

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

  • Vulnerable module: uuid
  • Introduced through: @jellybrick/electron-better-web-request@2.0.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @jellybrick/electron-better-web-request@2.0.0 uuid@13.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

Exposure of Data Element to Wrong Session

  • Vulnerable module: hono
  • Introduced through: hono@4.12.27

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music hono@4.12.27
    Remediation: Upgrade to hono@4.12.34.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Exposure of Data Element to Wrong Session in the memo function. An attacker can access sensitive information belonging to other users by sending requests that trigger the reuse of server-side rendered HTML when components wrapped in memo obtain user- or request-specific data from an ambient context instead of through props. This is only exploitable if the application renders with server-side rendering using hono/jsx, wraps a component reading ambient request state in memo, and both requests reach the same warm instance.

Remediation

Upgrade hono to version 4.12.34 or higher.

References

medium severity

MPL-2.0 license

  • Module: @dehoist/romanize-thai
  • Introduced through: @dehoist/romanize-thai@1.0.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @dehoist/romanize-thai@1.0.0

MPL-2.0 license

medium severity

MPL-2.0 license

  • Module: @ghostery/adblocker
  • Introduced through: @ghostery/adblocker-electron@2.18.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0 @ghostery/adblocker@2.18.2

MPL-2.0 license

medium severity

MPL-2.0 license

  • Module: @ghostery/adblocker-content
  • Introduced through: @ghostery/adblocker-electron-preload@2.18.0 and @ghostery/adblocker-electron@2.18.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron-preload@2.18.0 @ghostery/adblocker-content@2.18.2
  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0 @ghostery/adblocker@2.18.2 @ghostery/adblocker-content@2.18.2
  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0 @ghostery/adblocker-electron-preload@2.18.2 @ghostery/adblocker-content@2.18.2

MPL-2.0 license

medium severity

MPL-2.0 license

  • Module: @ghostery/adblocker-electron
  • Introduced through: @ghostery/adblocker-electron@2.18.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0

MPL-2.0 license

medium severity

MPL-2.0 license

  • Module: @ghostery/adblocker-electron-preload
  • Introduced through: @ghostery/adblocker-electron@2.18.0 and @ghostery/adblocker-electron-preload@2.18.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0 @ghostery/adblocker-electron-preload@2.18.2
  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron-preload@2.18.0

MPL-2.0 license

medium severity

MPL-2.0 license

  • Module: @ghostery/adblocker-extended-selectors
  • Introduced through: @ghostery/adblocker-electron-preload@2.18.0 and @ghostery/adblocker-electron@2.18.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron-preload@2.18.0 @ghostery/adblocker-content@2.18.2 @ghostery/adblocker-extended-selectors@2.18.2
  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0 @ghostery/adblocker@2.18.2 @ghostery/adblocker-extended-selectors@2.18.2
  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0 @ghostery/adblocker@2.18.2 @ghostery/adblocker-content@2.18.2 @ghostery/adblocker-extended-selectors@2.18.2
  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0 @ghostery/adblocker-electron-preload@2.18.2 @ghostery/adblocker-content@2.18.2 @ghostery/adblocker-extended-selectors@2.18.2

MPL-2.0 license

medium severity

MPL-2.0 license

  • Module: @ghostery/url-parser
  • Introduced through: @ghostery/adblocker-electron@2.18.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0 @ghostery/adblocker@2.18.2 @ghostery/url-parser@1.3.1

MPL-2.0 license

medium severity

MPL-2.0 license

  • Module: @remusao/guess-url-type
  • Introduced through: @ghostery/adblocker-electron@2.18.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0 @ghostery/adblocker@2.18.2 @remusao/guess-url-type@2.1.0

MPL-2.0 license

medium severity

MPL-2.0 license

  • Module: @remusao/small
  • Introduced through: @ghostery/adblocker-electron@2.18.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0 @ghostery/adblocker@2.18.2 @remusao/small@2.1.0

MPL-2.0 license

medium severity

MPL-2.0 license

  • Module: @remusao/smaz
  • Introduced through: @ghostery/adblocker-electron@2.18.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0 @ghostery/adblocker@2.18.2 @remusao/smaz@2.2.0

MPL-2.0 license

medium severity

MPL-2.0 license

  • Module: @remusao/smaz-compress
  • Introduced through: @ghostery/adblocker-electron@2.18.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0 @ghostery/adblocker@2.18.2 @remusao/smaz@2.2.0 @remusao/smaz-compress@2.2.0

MPL-2.0 license

medium severity

MPL-2.0 license

  • Module: @remusao/smaz-decompress
  • Introduced through: @ghostery/adblocker-electron@2.18.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0 @ghostery/adblocker@2.18.2 @remusao/smaz@2.2.0 @remusao/smaz-decompress@2.2.0

MPL-2.0 license

medium severity

MPL-2.0 license

  • Module: @remusao/trie
  • Introduced through: @ghostery/adblocker-electron@2.18.0

Detailed paths

  • Introduced through: youtube-music@th-ch/youtube-music @ghostery/adblocker-electron@2.18.0 @ghostery/adblocker@2.18.2 @remusao/smaz@2.2.0 @remusao/smaz-compress@2.2.0 @remusao/trie@2.1.0

MPL-2.0 license