npm package report

Is @fedify/vocab-runtime safe?

2 known vulnerabilities, worst severity HIGH.

// reach

0 direct dependencies

none carry a known advisory

    0 packages depend on it

    an advisory here reaches each of them

      Create a free accountfor every dependency path, dependent and what to upgrade
      // ai model usage

      Tracked for PyPI packages. HuggingFace models declare Python dependencies, so npm packages are not covered.


      cvss
      0.0
      high

      severity out of 10

      epss
      0.00%
      medium

      chance of exploitation in 30 days, 34th percentile of all CVEs

      xyz score
      not scored

      CyberXYZ composite out of 10

      fig. 01 — GHSA-xw9q-2mv6-9fr8, the advisory selected below

      // 2 advisories

      GHSA-xw9q-2mv6-9fr8

      HIGHCVE-2026-50131
      // summary

      Fedify previously addressed SSRF/internal network access in GHSA-p9cg-vqcc-grcx by adding public URL validation before runtime document and media fetching. However, the current IPv4 validation logic appears incomplete.

      The validatePublicUrl() protection relies on isValidPublicIPv4Address() to reject non-public IPv4 destinations. The function blocks common private and local ranges such as 10.0.0.0/8, 127.0.0.0/8, 169.254.0.0/16, 172.16.0.0/12, and 192.168.0.0/16, but it still treats several special-use, reserved, multicast, benchmarking, and carrier-grade NAT IPv4 ranges as valid public destinations.

      Because this validation is used as an SSRF defense before outbound fetches, this appears to be an incomplete mitigation or bypass class for the previous SSRF issue.

      I tested this against the current repository code at unreleased version 2.3.0. I used >=0.11.2, <=2.2.3 as the suspected affected range because 0.11.2 is listed as a patched version for GHSA-p9cg-vqcc-grcx, and this report concerns the post-fix validation logic. Maintainers may adjust the exact affected range.

      // why this is not a duplicate of ghsa-p9cg-vqcc-grcx

      GHSA-p9cg-vqcc-grcx covered the original behavior where Fedify fetched ActivityPub object, activity, document, and media URLs without first ensuring that the resolved destination was public.

      This report is about the post-fix validation logic. The current mitigation now performs public URL/IP validation, but the IPv4 classification is incomplete and still treats several special-use ranges as public. Therefore, this is a potential incomplete fix/bypass of the previous SSRF mitigation rather than a re-report of the original issue.

      The affected behavior appears to exist in the patched/current code path, not only in versions listed as vulnerable in the original advisory.

      // affected code

      Affected file:

      packages/vocab-runtime/src/url.ts

      Current IPv4 validation logic:

      export function isValidPublicIPv4Address(address: string): boolean {
        const parts = address.split(".");
        const first = parseInt(parts[0]);
        if (first === 0 || first === 10 || first === 127) return false;
        const second = parseInt(parts[1]);
        if (first === 169 && second === 254) return false;
        if (first === 172 && second >= 16 && second <= 31) return false;
        if (first === 192 && second === 168) return false;
        return true;
      }

      The important point is that the bypass exists in the mitigation logic itself: the function responsible for deciding whether a destination is public returns true for address ranges that are not globally routable public internet destinations.

      // proof of concept

      I reproduced the IPv4 validation behavior using the same logic:

      function isValidPublicIPv4Address(address) {
        const parts = address.split(".");
        const first = parseInt(parts[0], 10);
        if (first === 0 || first === 10 || first === 127) return false;
      
        const second = parseInt(parts[1], 10);
        if (first === 169 && second === 254) return false;
        if (first === 172 && second >= 16 && second  " + isValidPublicIPv4Address(ip));
      }

      Observed output:

      8.8.8.8 => true
      127.0.0.1 => false
      10.0.0.1 => false
      192.168.1.1 => false
      169.254.169.254 => false
      100.64.0.1 => true
      198.18.0.1 => true
      224.0.0.1 => true
      240.0.0.1 => true
      192.0.0.1 => true
      192.0.2.1 => true
      198.51.100.1 => true
      203.0.113.1 => true

      The validator correctly blocks some common private and local ranges, but incorrectly allows multiple special-use ranges.

      // examples of incorrectly allowed ranges

      Important examples include:

      100.64.0.0/10 Carrier-grade NAT
      198.18.0.0/15 Benchmarking / internal testing networks
      224.0.0.0/4 Multicast
      240.0.0.0/4 Reserved
      192.0.0.0/24 IETF protocol assignments

      Additional correctness examples:

      192.0.2.0/24 Documentation range
      198.51.100.0/24 Documentation range
      203.0.113.0/24 Documentation range
      // security impact

      Any Fedify feature that accepts or processes remote ActivityPub object, activity, document, or media URLs and relies on validatePublicUrl() as an SSRF protection boundary may incorrectly allow outbound requests to special-use IPv4 destinations that should not be treated as public internet resources.

      This may allow an attacker-controlled ActivityPub object or media URL to cause a Fedify server to initiate requests to non-public or special-use network ranges, depending on the deployment environment and network routing.

      This is best understood as an incomplete fix/bypass class for the previous SSRF/internal-network-access advisory GHSA-p9cg-vqcc-grcx.

      // suggested fix

      Avoid using a small manual denylist for public IP validation. Instead, validate that the resolved address is globally routable/public.

      At minimum, IPv4 validation should reject all relevant special-use ranges, including:

      0.0.0.0/8
      10.0.0.0/8
      100.64.0.0/10
      127.0.0.0/8
      169.254.0.0/16
      172.16.0.0/12
      192.0.0.0/24
      192.0.2.0/24
      192.168.0.0/16
      198.18.0.0/15
      198.51.100.0/24
      203.0.113.0/24
      224.0.0.0/4
      240.0.0.0/4

      A safer long-term fix would be to use a maintained IP address classification library that explicitly supports security-sensitive public/global IP validation.

      Patch Idea

      export function isValidPublicIPv4Address(address: string): boolean {
        const parts = address.split(".").map((part) => parseInt(part, 10));
      
        if (
          parts.length !== 4 ||
          parts.some((part) => Number.isNaN(part) || part  255)
        ) {
          return false;
        }
      
        const [a, b] = parts;
      
        if (a === 0) return false;
        if (a === 10) return false;
        if (a === 100 && b >= 64 && b = 16 && b = 224) return false;
      
        return true;
      }
      // advisory classification note

      I understand this may be classified either as a new advisory or as an update/incomplete fix for GHSA-p9cg-vqcc-grcx. Since the issue appears to affect the validation logic added after the original SSRF fix, and because the affected code is part of the current security boundary for outbound URL fetching, I wanted to report it privately for maintainer review.

      // disclosure note

      This report does not attempt to access any real internal network service. The proof focuses on the validation decision itself: multiple non-public or special-use IPv4 ranges are accepted as public by the current SSRF protection logic.

      // researcher

      Reported by Chaitanya Garware.

      // cvss v3.1 vector

      CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:L

      Attack vector
      Network
      Attack complexity
      Low
      Privileges required
      None
      User interaction
      None
      Scope
      Unchanged
      Confidentiality
      High
      Integrity
      Low
      Availability
      Low

      Checked 2026-09-26 at 01:04 UTC. The most recent advisory here was published 2026-07-14. Updated continuously from NVD, GHSA, OSV and CNA feeds.

      Think a verdict here is wrong? Tell us — we respond within 2 business days.