Debian Package Tracker
Register | Log in
Subscribe

node-webfont

Generate fonts from SVG icons

Choose email to subscribe with

general
  • source: node-webfont (main)
  • version: 11.4.0+dfsg2+~cs35.7.26-19
  • maintainer: Debian Javascript Maintainers (archive) (DMD)
  • uploaders: Julian Gilbey [DMD]
  • arch: all
  • std-ver: 4.7.4
  • VCS: Git (Browse, QA)
versions [more versions can be listed by madison] [old versions available from snapshot.debian.org]
[pool directory]
  • oldstable: 11.4.0+dfsg2+~cs35.7.26-7
  • stable: 11.4.0+dfsg2+~cs35.7.26-13
  • testing: 11.4.0+dfsg2+~cs35.7.26-18
  • unstable: 11.4.0+dfsg2+~cs35.7.26-19
versioned links
  • 11.4.0+dfsg2+~cs35.7.26-7: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 11.4.0+dfsg2+~cs35.7.26-13: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 11.4.0+dfsg2+~cs35.7.26-18: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 11.4.0+dfsg2+~cs35.7.26-19: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
binaries
  • node-webfont
action needed
Debci reports failed tests high
  • unstable: fail (log)
    The tests ran in 0:01:10
    Last run: 2026-03-19T21:06:14.000Z
    Previous status: unknown

  • testing: pass (log)
    The tests ran in 0:02:39
    Last run: 2026-03-19T18:58:47.000Z
    Previous status: unknown

  • stable: pass (log)
    The tests ran in 0:02:21
    Last run: 2025-11-09T15:06:16.000Z
    Previous status: unknown

Created: 2026-01-11 Last update: 2026-04-16 14:01
6 security issues in trixie high

There are 6 open security issues in trixie.

6 important issues:
  • CVE-2023-26920: fast-xml-parser before 4.1.2 allows __proto__ for Prototype Pollution.
  • CVE-2026-25896: fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. From 4.1.3to before 5.3.5, a dot (.) in a DOCTYPE entity name is treated as a regex wildcard during entity replacement, allowing an attacker to shadow built-in XML entities (<, >, &, ", ') with arbitrary values. This bypasses entity encoding and leads to XSS when parsed output is rendered. This vulnerability is fixed in 5.3.5.
  • CVE-2026-26278: fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. In versions 4.1.3 through 5.3.5, the XML parser can be forced to do an unlimited amount of entity expansion. With a very small XML input, it’s possible to make the parser spend seconds or even minutes processing a single request, effectively freezing the application. Version 5.3.6 fixes the issue. As a workaround, avoid using DOCTYPE parsing by `processEntities: false` option.
  • CVE-2026-27942: fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. Prior to version 5.3.8, the application crashes with stack overflow when user use XML builder with `preserveOrder:true`. Version 5.3.8 fixes the issue. As a workaround, use XML builder with `preserveOrder:false` or check the input data before passing to builder.
  • CVE-2026-33036: fast-xml-parser allows users to process XML from JS object without C/C++ based libraries or callbacks. Versions 4.0.0-beta.3 through 5.5.5 contain a bypass vulnerability where numeric character references (&#NNN;, &#xHH;) and standard XML entities completely evade the entity expansion limits (e.g., maxTotalExpansions, maxExpandedLength) added to fix CVE-2026-26278, enabling XML entity expansion Denial of Service. The root cause is that replaceEntitiesValue() in OrderedObjParser.js only enforces expansion counting on DOCTYPE-defined entities while the lastEntities loop handling numeric/standard entities performs no counting at all. An attacker supplying 1M numeric entity references like A can force ~147MB of memory allocation and heavy CPU usage, potentially crashing the process—even when developers have configured strict limits. This issue has been fixed in version 5.5.6.
  • CVE-2026-33349: fast-xml-parser allows users to process XML from JS object without C/C++ based libraries or callbacks. From version 4.0.0-beta.3 to before version 5.5.7, the DocTypeReader in fast-xml-parser uses JavaScript truthy checks to evaluate maxEntityCount and maxEntitySize configuration limits. When a developer explicitly sets either limit to 0 — intending to disallow all entities or restrict entity size to zero bytes — the falsy nature of 0 in JavaScript causes the guard conditions to short-circuit, completely bypassing the limits. An attacker who can supply XML input to such an application can trigger unbounded entity expansion, leading to memory exhaustion and denial of service. This issue has been patched in version 5.5.7.
Created: 2026-02-19 Last update: 2026-04-11 23:00
6 security issues in sid high

There are 6 open security issues in sid.

6 important issues:
  • CVE-2023-26920: fast-xml-parser before 4.1.2 allows __proto__ for Prototype Pollution.
  • CVE-2026-25896: fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. From 4.1.3to before 5.3.5, a dot (.) in a DOCTYPE entity name is treated as a regex wildcard during entity replacement, allowing an attacker to shadow built-in XML entities (<, >, &, ", ') with arbitrary values. This bypasses entity encoding and leads to XSS when parsed output is rendered. This vulnerability is fixed in 5.3.5.
  • CVE-2026-26278: fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. In versions 4.1.3 through 5.3.5, the XML parser can be forced to do an unlimited amount of entity expansion. With a very small XML input, it’s possible to make the parser spend seconds or even minutes processing a single request, effectively freezing the application. Version 5.3.6 fixes the issue. As a workaround, avoid using DOCTYPE parsing by `processEntities: false` option.
  • CVE-2026-27942: fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. Prior to version 5.3.8, the application crashes with stack overflow when user use XML builder with `preserveOrder:true`. Version 5.3.8 fixes the issue. As a workaround, use XML builder with `preserveOrder:false` or check the input data before passing to builder.
  • CVE-2026-33036: fast-xml-parser allows users to process XML from JS object without C/C++ based libraries or callbacks. Versions 4.0.0-beta.3 through 5.5.5 contain a bypass vulnerability where numeric character references (&#NNN;, &#xHH;) and standard XML entities completely evade the entity expansion limits (e.g., maxTotalExpansions, maxExpandedLength) added to fix CVE-2026-26278, enabling XML entity expansion Denial of Service. The root cause is that replaceEntitiesValue() in OrderedObjParser.js only enforces expansion counting on DOCTYPE-defined entities while the lastEntities loop handling numeric/standard entities performs no counting at all. An attacker supplying 1M numeric entity references like A can force ~147MB of memory allocation and heavy CPU usage, potentially crashing the process—even when developers have configured strict limits. This issue has been fixed in version 5.5.6.
  • CVE-2026-33349: fast-xml-parser allows users to process XML from JS object without C/C++ based libraries or callbacks. From version 4.0.0-beta.3 to before version 5.5.7, the DocTypeReader in fast-xml-parser uses JavaScript truthy checks to evaluate maxEntityCount and maxEntitySize configuration limits. When a developer explicitly sets either limit to 0 — intending to disallow all entities or restrict entity size to zero bytes — the falsy nature of 0 in JavaScript causes the guard conditions to short-circuit, completely bypassing the limits. An attacker who can supply XML input to such an application can trigger unbounded entity expansion, leading to memory exhaustion and denial of service. This issue has been patched in version 5.5.7.
Created: 2026-02-19 Last update: 2026-04-11 23:00
6 security issues in forky high

There are 6 open security issues in forky.

6 important issues:
  • CVE-2023-26920: fast-xml-parser before 4.1.2 allows __proto__ for Prototype Pollution.
  • CVE-2026-25896: fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. From 4.1.3to before 5.3.5, a dot (.) in a DOCTYPE entity name is treated as a regex wildcard during entity replacement, allowing an attacker to shadow built-in XML entities (<, >, &, ", ') with arbitrary values. This bypasses entity encoding and leads to XSS when parsed output is rendered. This vulnerability is fixed in 5.3.5.
  • CVE-2026-26278: fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. In versions 4.1.3 through 5.3.5, the XML parser can be forced to do an unlimited amount of entity expansion. With a very small XML input, it’s possible to make the parser spend seconds or even minutes processing a single request, effectively freezing the application. Version 5.3.6 fixes the issue. As a workaround, avoid using DOCTYPE parsing by `processEntities: false` option.
  • CVE-2026-27942: fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. Prior to version 5.3.8, the application crashes with stack overflow when user use XML builder with `preserveOrder:true`. Version 5.3.8 fixes the issue. As a workaround, use XML builder with `preserveOrder:false` or check the input data before passing to builder.
  • CVE-2026-33036: fast-xml-parser allows users to process XML from JS object without C/C++ based libraries or callbacks. Versions 4.0.0-beta.3 through 5.5.5 contain a bypass vulnerability where numeric character references (&#NNN;, &#xHH;) and standard XML entities completely evade the entity expansion limits (e.g., maxTotalExpansions, maxExpandedLength) added to fix CVE-2026-26278, enabling XML entity expansion Denial of Service. The root cause is that replaceEntitiesValue() in OrderedObjParser.js only enforces expansion counting on DOCTYPE-defined entities while the lastEntities loop handling numeric/standard entities performs no counting at all. An attacker supplying 1M numeric entity references like A can force ~147MB of memory allocation and heavy CPU usage, potentially crashing the process—even when developers have configured strict limits. This issue has been fixed in version 5.5.6.
  • CVE-2026-33349: fast-xml-parser allows users to process XML from JS object without C/C++ based libraries or callbacks. From version 4.0.0-beta.3 to before version 5.5.7, the DocTypeReader in fast-xml-parser uses JavaScript truthy checks to evaluate maxEntityCount and maxEntitySize configuration limits. When a developer explicitly sets either limit to 0 — intending to disallow all entities or restrict entity size to zero bytes — the falsy nature of 0 in JavaScript causes the guard conditions to short-circuit, completely bypassing the limits. An attacker who can supply XML input to such an application can trigger unbounded entity expansion, leading to memory exhaustion and denial of service. This issue has been patched in version 5.5.7.
Created: 2026-02-19 Last update: 2026-04-11 23:00
6 security issues in bookworm high

There are 6 open security issues in bookworm.

6 important issues:
  • CVE-2023-26920: fast-xml-parser before 4.1.2 allows __proto__ for Prototype Pollution.
  • CVE-2026-25896: fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. From 4.1.3to before 5.3.5, a dot (.) in a DOCTYPE entity name is treated as a regex wildcard during entity replacement, allowing an attacker to shadow built-in XML entities (<, >, &, ", ') with arbitrary values. This bypasses entity encoding and leads to XSS when parsed output is rendered. This vulnerability is fixed in 5.3.5.
  • CVE-2026-26278: fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. In versions 4.1.3 through 5.3.5, the XML parser can be forced to do an unlimited amount of entity expansion. With a very small XML input, it’s possible to make the parser spend seconds or even minutes processing a single request, effectively freezing the application. Version 5.3.6 fixes the issue. As a workaround, avoid using DOCTYPE parsing by `processEntities: false` option.
  • CVE-2026-27942: fast-xml-parser allows users to validate XML, parse XML to JS object, or build XML from JS object without C/C++ based libraries and no callback. Prior to version 5.3.8, the application crashes with stack overflow when user use XML builder with `preserveOrder:true`. Version 5.3.8 fixes the issue. As a workaround, use XML builder with `preserveOrder:false` or check the input data before passing to builder.
  • CVE-2026-33036: fast-xml-parser allows users to process XML from JS object without C/C++ based libraries or callbacks. Versions 4.0.0-beta.3 through 5.5.5 contain a bypass vulnerability where numeric character references (&#NNN;, &#xHH;) and standard XML entities completely evade the entity expansion limits (e.g., maxTotalExpansions, maxExpandedLength) added to fix CVE-2026-26278, enabling XML entity expansion Denial of Service. The root cause is that replaceEntitiesValue() in OrderedObjParser.js only enforces expansion counting on DOCTYPE-defined entities while the lastEntities loop handling numeric/standard entities performs no counting at all. An attacker supplying 1M numeric entity references like A can force ~147MB of memory allocation and heavy CPU usage, potentially crashing the process—even when developers have configured strict limits. This issue has been fixed in version 5.5.6.
  • CVE-2026-33349: fast-xml-parser allows users to process XML from JS object without C/C++ based libraries or callbacks. From version 4.0.0-beta.3 to before version 5.5.7, the DocTypeReader in fast-xml-parser uses JavaScript truthy checks to evaluate maxEntityCount and maxEntitySize configuration limits. When a developer explicitly sets either limit to 0 — intending to disallow all entities or restrict entity size to zero bytes — the falsy nature of 0 in JavaScript causes the guard conditions to short-circuit, completely bypassing the limits. An attacker who can supply XML input to such an application can trigger unbounded entity expansion, leading to memory exhaustion and denial of service. This issue has been patched in version 5.5.7.
Created: 2026-02-19 Last update: 2026-04-11 23:00
Fails to build during reproducibility testing normal
A package building reproducibly enables third parties to verify that the source matches the distributed binaries. It has been identified that this source package produced different results, failed to build or had other issues in a test environment. Please read about how to improve the situation!
Created: 2026-04-07 Last update: 2026-04-16 11:47
lintian reports 1 warning normal
Lintian reports 1 warning about this package. You should make the package lintian clean getting rid of them.
Created: 2026-04-12 Last update: 2026-04-12 06:00
1 new commit since last upload, is it time to release? normal
vcswatch reports that this package seems to have new commits in its VCS but has not yet updated debian/changelog. You should consider updating the Debian changelog and uploading this new version into the archive.

Here are the relevant commit logs:
commit 0604c464502d9a8f21960a602609b2b234bb1159
Author: Xavier Guimard <yadd@debian.org>
Date:   Sat Apr 11 22:05:23 2026 +0200

    Drop blhc false positives
Created: 2026-04-11 Last update: 2026-04-11 22:31
debian/patches: 1 patch to forward upstream low

Among the 17 debian patches available in version 11.4.0+dfsg2+~cs35.7.26-19 of the package, we noticed the following issues:

  • 1 patch where the metadata indicates that the patch has not yet been forwarded upstream. You should either forward the patch upstream or update the metadata to document its real status.
Created: 2025-10-04 Last update: 2026-04-12 10:02
testing migrations
  • excuses:
    • Migration status for node-webfont (11.4.0+dfsg2+~cs35.7.26-18 to 11.4.0+dfsg2+~cs35.7.26-19): Waiting for test results or another package, or too young (no action required now - check later)
    • Issues preventing migration:
    • ∙ ∙ Too young, only 4 of 5 days old
    • Additional info (not blocking):
    • ∙ ∙ Piuparts tested OK - https://piuparts.debian.org/sid/source/n/node-webfont.html
    • ∙ ∙ Autopkgtest for node-webfont/11.4.0+dfsg2+~cs35.7.26-19: amd64: Pass, arm64: Pass, i386: Pass, ppc64el: No tests, superficial or marked flaky ♻ (reference ♻), riscv64: No tests, superficial or marked flaky ♻ (reference ♻), s390x: No tests, superficial or marked flaky ♻ (reference ♻)
    • ∙ ∙ Reproduced on amd64
    • ∙ ∙ Reproduced on arm64
    • ∙ ∙ Reproduced on armhf
    • ∙ ∙ Reproduced on i386
    • ∙ ∙ Reproduced on ppc64el
    • Not considered
news
[rss feed]
  • [2026-04-11] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-19 (source) into unstable (Xavier Guimard)
  • [2026-01-31] node-webfont 11.4.0+dfsg2+~cs35.7.26-18 MIGRATED to testing (Debian testing watch)
  • [2026-01-26] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-18 (source) into unstable (Jérémy Lal)
  • [2025-12-20] node-webfont 11.4.0+dfsg2+~cs35.7.26-16 MIGRATED to testing (Debian testing watch)
  • [2025-12-15] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-16 (source) into unstable (Jérémy Lal)
  • [2025-12-06] node-webfont 11.4.0+dfsg2+~cs35.7.26-15 MIGRATED to testing (Debian testing watch)
  • [2025-12-06] node-webfont 11.4.0+dfsg2+~cs35.7.26-15 MIGRATED to testing (Debian testing watch)
  • [2025-12-01] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-15 (source) into unstable (Jérémy Lal)
  • [2025-10-09] node-webfont 11.4.0+dfsg2+~cs35.7.26-14 MIGRATED to testing (Debian testing watch)
  • [2025-10-04] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-14 (source) into unstable (Jérémy Lal)
  • [2025-04-27] node-webfont 11.4.0+dfsg2+~cs35.7.26-13 MIGRATED to testing (Debian testing watch)
  • [2025-04-16] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-13 (source) into unstable (Julian Gilbey)
  • [2025-03-16] node-webfont 11.4.0+dfsg2+~cs35.7.26-12 MIGRATED to testing (Debian testing watch)
  • [2025-03-11] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-12 (source) into unstable (Julian Gilbey)
  • [2025-02-14] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-11 (source) into unstable (Jérémy Lal)
  • [2024-11-06] node-webfont REMOVED from testing (Debian testing watch)
  • [2023-12-02] node-webfont 11.4.0+dfsg2+~cs35.7.26-10 MIGRATED to testing (Debian testing watch)
  • [2023-11-29] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-10 (source) into unstable (Julian Gilbey)
  • [2023-11-27] node-webfont REMOVED from testing (Debian testing watch)
  • [2023-08-19] node-webfont 11.4.0+dfsg2+~cs35.7.26-9 MIGRATED to testing (Debian testing watch)
  • [2023-08-16] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-9 (source) into unstable (Julian Gilbey)
  • [2023-08-16] node-webfont 11.4.0+dfsg2+~cs35.7.26-8 MIGRATED to testing (Debian testing watch)
  • [2023-08-14] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-8 (source) into unstable (Yadd) (signed by: Xavier Guimard)
  • [2023-03-01] node-webfont 11.4.0+dfsg2+~cs35.7.26-7 MIGRATED to testing (Debian testing watch)
  • [2023-02-19] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-7 (source) into unstable (Julian Gilbey)
  • [2023-02-16] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-6 (source) into unstable (Julian Gilbey)
  • [2023-02-14] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-5 (source) into unstable (Julian Gilbey)
  • [2023-02-14] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-4 (source) into unstable (Julian Gilbey)
  • [2023-02-12] Accepted node-webfont 11.4.0+dfsg2+~cs35.7.26-3 (source) into unstable (Julian Gilbey)
  • [2023-02-11] node-webfont 11.4.0+dfsg2+~cs35.7.26-2 MIGRATED to testing (Debian testing watch)
  • 1
  • 2
bugs [bug history graph]
  • all: 0
links
  • homepage
  • lintian (0, 1)
  • buildd: logs, reproducibility
  • popcon
  • browse source code
  • other distros
  • security tracker
  • debian patches
  • debci
ubuntu Ubuntu logo [Information about Ubuntu for Debian Developers]
  • version: 11.4.0+dfsg2+~cs35.7.26-18

Debian Package Tracker — Copyright 2013-2025 The Distro Tracker Developers
Report problems to the tracker.debian.org pseudo-package in the Debian BTS.
Documentation — Bugs — Git Repository — Contributing