Vulnerabilities

20 via 20 paths

Dependencies

382

Source

GitHub

Find, fix and prevent vulnerabilities in your code.

Issue type
  • 20
  • 13
Severity
  • 1
  • 5
  • 26
  • 1
Status
  • 33
  • 0
  • 0

critical severity
new

CRLF Injection

  • Vulnerable module: undici
  • Introduced through: @xhayper/discord-rpc@1.3.3

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @xhayper/discord-rpc@1.3.3 @discordjs/rest@2.6.1 undici@6.24.1

Overview

undici is an An HTTP/1.1 client, written from scratch for Node.js

Affected versions of this package are vulnerable to CRLF Injection in the parseSetCookie. An attacker can inject arbitrary HTTP headers by supplying specially crafted percent-encoded values in the Set-Cookie header, which are improperly decoded and then forwarded into response headers. This can enable actions such as session fixation, open redirect, or cache poisoning.

Note: This is only exploitable if the application parses Set-Cookie headers using the affected function and then forwards the parsed value into a response header without proper sanitization.

Workaround

This vulnerability can be mitigated by sanitizing the values returned by the affected cookie parsing functions to strip or reject CR, LF, NUL, ;, and = bytes before forwarding them into response headers.

Remediation

Upgrade undici to version 6.27.0, 7.28.0, 8.5.0 or higher.

References

high severity

Allocation of Resources Without Limits or Throttling

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.16.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via the bodyLimit function. An attacker can bypass request size restrictions by sending chunked or unknown-length requests, allowing oversized payloads to reach application handlers and potentially receive successful responses before the size check is enforced.

Remediation

Upgrade hono to version 4.12.16 or higher.

References

high severity
new

Directory Traversal

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.25.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Directory Traversal via the serve-static method on Windows hosts when an encoded backslash (%5C) in the request path is decoded to \, which is treated as a separator by the Windows path resolver. An attacker can access static files that are intended to be protected behind prefix-mounted middleware by crafting a request path containing an encoded backslash.

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.12.25 or higher.

References

high severity
new

Allocation of Resources Without Limits or Throttling

  • Vulnerable module: undici
  • Introduced through: @xhayper/discord-rpc@1.3.3

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @xhayper/discord-rpc@1.3.3 @discordjs/rest@2.6.1 undici@6.24.1

Overview

undici is an An HTTP/1.1 client, written from scratch for Node.js

Affected versions of this package are vulnerable to Allocation of Resources Without Limits or Throttling via the handling of WebSocket message fragments. An attacker can cause unbounded memory growth and exhaust system resources by streaming a large number of small or empty continuation frames from a malicious WebSocket server.

Remediation

Upgrade undici to version 6.26.0, 7.28.0, 8.5.0 or higher.

References

high severity
new

Permissive List of Allowed Inputs

  • Vulnerable module: undici
  • Introduced through: @xhayper/discord-rpc@1.3.3

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @xhayper/discord-rpc@1.3.3 @discordjs/rest@2.6.1 undici@6.24.1

Overview

undici is an An HTTP/1.1 client, written from scratch for Node.js

Affected versions of this package are vulnerable to Permissive List of Allowed Inputs via permissive substring matching in the Set-Cookie attribute parsing. An attacker can weaken cookie SameSite enforcement by crafting a response with a non-standard SameSite value that is interpreted as a more permissive setting, potentially allowing cookies to be sent in cross-site requests.

Note: This is only exploitable if the application consumes Set-Cookie headers from server responses (for example via undici's fetch or proxy code paths) and then forwards or relies on the parsed sameSite attribute.

Workaround

This vulnerability can be mitigated by validating that the parsed sameSite attribute is exactly 'Strict', 'Lax', or 'None' (case-insensitive) before relying on or forwarding it.

Remediation

Upgrade undici to version 6.27.0, 7.28.0, 8.5.0 or higher.

References

high severity
new

Permissive Cross-domain Policy with Untrusted Domains

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.25.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Permissive Cross-domain Policy with Untrusted Domains in the CORS middleware. An attacker can access sensitive information and perform unauthorized actions by sending cross-origin requests with credentials from arbitrary origins. This is only exploitable if the application enables credentials and leaves the origin unset or set to the wildcard.

Remediation

Upgrade hono to version 4.12.25 or higher.

References

medium severity
new

HTTP Request Smuggling

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.21.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to HTTP Request Smuggling via the app.mount function. An attacker can access unintended routes or resources by sending requests with percent-encoded multi-byte characters in the URL path, leading to incorrect routing.

Remediation

Upgrade hono to version 4.12.21 or higher.

References

medium severity
new

Improper Encoding or Escaping of Output

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.25.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Improper Encoding or Escaping of Output in the AWS Lambda adapter's handling of multiple Set-Cookie headers. An attacker can cause clients to drop or misinterpret cookies by triggering responses that set multiple cookies, leading to broken sessions, forced re-authentication, or failure of preference and CSRF cookies. This is only exploitable if the application is deployed on AWS Lambda behind an ALB in single-header mode or VPC Lattice v2.

Remediation

Upgrade hono to version 4.12.25 or higher.

References

medium severity
new

Incorrect Regular Expression

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.21.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Incorrect Regular Expression via the ip-restriction middleware. An attacker can bypass configured deny rules for IPv6 addresses by submitting non-canonical representations, such as compressed or explicit-zero forms, causing the rule to be skipped.

Remediation

Upgrade hono to version 4.12.21 or higher.

References

medium severity
new

Insufficient Verification of Data Authenticity

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.25.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Insufficient Verification of Data Authenticity in the Body Limit Middleware. An attacker can cause the application to process payloads larger than the configured maximum by understating the Content-Length header in requests on AWS Lambda environments, leading to increased CPU and memory usage per request.

Remediation

Upgrade hono to version 4.12.25 or higher.

References

medium severity

Use of Cache Containing Sensitive Information

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.18.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Use of Cache Containing Sensitive Information through the cache process in the cache middleware. An attacker can cause responses to be cached or served incorrectly by sending requests that elicit Vary headers, Authorization headers, or non-GET methods. As a result, users can receive stale or cross-request content, and authenticated or method-specific responses can be stored or reused in ways that break application behavior and expose the wrong response body.

Workarounds

  • Avoid using the cache middleware on endpoints that return authenticated or per-user content unless you can mark those responses as non-cacheable; this prevents cross-user cache leakage and stale user-specific bodies.

Remediation

Upgrade hono to version 4.12.18 or higher.

References

medium severity
new

Improper Authorization

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.21.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Improper Authorization via the jwt middleware when the Authorization header uses any scheme, not just Bearer. An attacker can gain unauthorized access by presenting a valid JWT under a non-Bearer scheme identifier.

Remediation

Upgrade hono to version 4.12.21 or higher.

References

medium severity
new

Improperly Implemented Security Check for Standard

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.25.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Improperly Implemented Security Check for Standard in the Lambda@Edge adapter that truncates repeated request headers. An attacker can bypass access restrictions or affect auditing mechanisms by sending repeated request headers, causing only the last value to be processed and earlier values to be ignored.

Remediation

Upgrade hono to version 4.12.25 or higher.

References

medium severity
new

Time-of-check Time-of-use (TOCTOU) Race Condition

  • Vulnerable module: undici
  • Introduced through: @xhayper/discord-rpc@1.3.3

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @xhayper/discord-rpc@1.3.3 @discordjs/rest@2.6.1 undici@6.24.1

Overview

undici is an An HTTP/1.1 client, written from scratch for Node.js

Affected versions of this package are vulnerable to Time-of-check Time-of-use (TOCTOU) Race Condition in the HTTP/1.1 client when an attacker-controlled upstream server injects an unsolicited response onto an idle keep-alive socket after a request completes. An attacker can cause responses to be delivered to the wrong requests by sending crafted HTTP responses through a compromised or malicious upstream server.

Note: This is only exploitable if the upstream HTTP/1.1 server is attacker-controlled or compromised and keep-alive connection reuse is enabled.

Workaround

This vulnerability can be mitigated by disabling keep-alive connection reuse by setting keepAliveTimeout: 0 on the Client or Pool.

Remediation

Upgrade undici to version 6.27.0, 7.28.0, 8.5.0 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: pear-music@michei69/pear-desktop @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

Cross-site Scripting (XSS)

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.14.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Cross-site Scripting (XSS) via the jsxAttr() and JSX attribute rendering paths in src/jsx/jsx-runtime.ts, src/jsx/base.ts, and src/jsx/dom/render.ts. An attacker can inject executable markup by supplying a crafted attribute name such as one containing quotes, angle brackets, or spaces through JSX props or spread attributes. This lets untrusted input break out of the intended attribute context during server-rendered output or DOM updates, leading to script execution in the user’s browser and compromising the affected page.

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 &lt; and > can be coded as &gt; 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 hono to version 4.12.14 or higher.

References

medium severity
new

HTTP Response Splitting

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.21.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to HTTP Response Splitting via the serialize function. An attacker can inject arbitrary attributes into the Set-Cookie response header by supplying crafted input to the sameSite or priority options.

Remediation

Upgrade hono to version 4.12.21 or higher.

References

medium severity

Improper Encoding or Escaping of Output

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.18.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Improper Encoding or Escaping of Output the styleObjectForEach and jsxAttr style serialization paths in the JSX runtime. An attacker can inject arbitrary CSS declarations by supplying crafted style object values or property names containing declaration separators such as ;, comments, braces, or other CSS syntax, causing the generated style attribute to include attacker-controlled rules. When application code renders untrusted style objects, the injected CSS can override the page's layout and presentation, hide or reposition content, and load attacker-controlled resources in the victim’s browser, but does not enable JavaScript execution or HTML attribute breakout.

Remediation

Upgrade hono to version 4.12.18 or higher.

References

medium severity

Improper Validation of Specified Quantity in Input

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.18.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to Improper Validation of Specified Quantity in Input through the verify function in the JWT component. An attacker can supply a signed token with malformed nbf, exp, or iat claims, including non-numeric values or non-finite numbers such as 1e400, to have the claims skipped during validation and use a token that should be rejected. This lets an attacker present tokens with invalid time-based claims and gain unauthorized access to protected JWT-backed functionality.

Note: This is only exploitable if the attacker can issue tokens accepted by the application or has control over the signing key.

Remediation

Upgrade hono to version 4.12.18 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: pear-music@michei69/pear-desktop @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.14.1

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1 @ghostery/adblocker@2.18.0

MPL-2.0 license

medium severity

MPL-2.0 license

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron-preload@2.14.1 @ghostery/adblocker-content@2.18.0
  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1 @ghostery/adblocker@2.18.0 @ghostery/adblocker-content@2.18.0
  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1 @ghostery/adblocker-electron-preload@2.18.0 @ghostery/adblocker-content@2.18.0

MPL-2.0 license

medium severity

MPL-2.0 license

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1

MPL-2.0 license

medium severity

MPL-2.0 license

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1 @ghostery/adblocker-electron-preload@2.18.0
  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron-preload@2.14.1

MPL-2.0 license

medium severity

MPL-2.0 license

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron-preload@2.14.1 @ghostery/adblocker-content@2.18.0 @ghostery/adblocker-extended-selectors@2.18.0
  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1 @ghostery/adblocker@2.18.0 @ghostery/adblocker-extended-selectors@2.18.0
  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1 @ghostery/adblocker@2.18.0 @ghostery/adblocker-content@2.18.0 @ghostery/adblocker-extended-selectors@2.18.0
  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1 @ghostery/adblocker-electron-preload@2.18.0 @ghostery/adblocker-content@2.18.0 @ghostery/adblocker-extended-selectors@2.18.0

MPL-2.0 license

medium severity

MPL-2.0 license

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1 @ghostery/adblocker@2.18.0 @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.14.1

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1 @ghostery/adblocker@2.18.0 @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.14.1

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1 @ghostery/adblocker@2.18.0 @remusao/small@2.1.0

MPL-2.0 license

medium severity

MPL-2.0 license

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1 @ghostery/adblocker@2.18.0 @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.14.1

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1 @ghostery/adblocker@2.18.0 @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.14.1

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1 @ghostery/adblocker@2.18.0 @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.14.1

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop @ghostery/adblocker-electron@2.14.1 @ghostery/adblocker@2.18.0 @remusao/smaz@2.2.0 @remusao/smaz-compress@2.2.0 @remusao/trie@2.1.0

MPL-2.0 license

low severity

HTML Injection

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

Detailed paths

  • Introduced through: pear-music@michei69/pear-desktop hono@4.12.12
    Remediation: Upgrade to hono@4.12.16.

Overview

hono is an Ultrafast web framework for the Edges

Affected versions of this package are vulnerable to HTML Injection via the jsx element tag. An attacker can inject unintended HTML elements or attributes, corrupt the HTML structure, or execute scripts by supplying malicious tag names as input to the rendering process.

Note: This is only exploitable if applications construct JSX tag names from untrusted input; applications using static or allowlisted tag names are not affected.

Remediation

Upgrade hono to version 4.12.16 or higher.

References