Vulnerabilities

1 via 2 paths

Dependencies

185

Source

GitHub

Find, fix and prevent vulnerabilities in your code.

Severity
  • 1
Status
  • 1
  • 0
  • 0

high severity
new

Interpretation Conflict

  • Vulnerable module: fast-uri
  • Introduced through: @modelcontextprotocol/sdk@1.29.0

Detailed paths

  • Introduced through: @houtini/better-search-console@houtini-ai/better-search-console @modelcontextprotocol/sdk@1.29.0 ajv@8.20.0 fast-uri@3.1.3
  • Introduced through: @houtini/better-search-console@houtini-ai/better-search-console @modelcontextprotocol/sdk@1.29.0 ajv-formats@3.0.1 ajv@8.20.0 fast-uri@3.1.3

Overview

fast-uri is a Dependency-free RFC 3986 URI toolbox

Affected versions of this package are vulnerable to Interpretation Conflict in its parse(), normalize(), and equal() functions, which call the nonexistent URL.domainToASCII() static method and silently swallow the resulting TypeError into parsed.error, leaving an internationalized hostname in its unconverted Unicode form. An attacker can steer host-based security policies to an unintended destination by supplying a URL with a Unicode or fullwidth hostname such as http://127。0。0。1/, which is parsed with the host left as 127。0。0。1 while Node's WHATWG URL parser and fetch() canonicalize it to 127.0.0.1. Exploitation requires the application to use this library for host-based decisions such as denylists, loopback filtering, or redirect and proxy validation before passing the URL to a downstream consumer that canonicalizes the host differently.

Remediation

Upgrade fast-uri to version 3.1.3, 4.0.1 or higher.

References