Debian Package Tracker
Register | Log in
Subscribe

node-postcss

Tool for transforming styles with JS plugins

Choose email to subscribe with

general
  • source: node-postcss (main)
  • version: 8.5.25+~cs10.2.23-1
  • maintainer: Debian Javascript Maintainers (archive) (DMD)
  • uploaders: Pirate Praveen [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]
  • o-o-stable: 8.2.1+~cs5.3.23-8
  • o-o-sec: 8.2.1+~cs5.3.23-8+deb11u1
  • oldstable: 8.4.20+~cs8.0.23-1+deb12u1
  • stable: 8.4.49+~cs9.2.32-1
  • testing: 8.5.25+~cs10.2.23-1
  • unstable: 8.5.25+~cs10.2.23-1
versioned links
  • 8.2.1+~cs5.3.23-8: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 8.2.1+~cs5.3.23-8+deb11u1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 8.4.20+~cs8.0.23-1+deb12u1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 8.4.49+~cs9.2.32-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
  • 8.5.25+~cs10.2.23-1: [.dsc, use dget on this link to retrieve source package] [changelog] [copyright] [rules] [control]
binaries
  • node-postcss (1 bugs: 0, 0, 1, 0)
action needed
A new upstream version is available: 8.5.26+~cs10.2.24 high
A new upstream version 8.5.26+~cs10.2.24 is available, you should consider packaging it.
Created: 2026-08-06 Last update: 2026-08-15 19:31
6 security issues in bullseye high

There are 6 open security issues in bullseye.

5 important issues:
  • CVE-2026-45623: PostCSS takes a CSS file and provides an API to analyze and modify its rules by transforming the rules into an Abstract Syntax Tree. In versions 8.5.11 and prior, the PreviousMap parses the /*# sourceMappingURL=PATH */ comment from any CSS string passed to process() and dereferences PATH against the local filesystem with no scheme, allowlist, or traversal check. An attacker who controls the CSS input can cause the host process to read any file readable by Node and leak the first ~10 bytes of its content through the resulting JSON.parse SyntaxError message. The bug also yields a precise file-existence oracle and a controllable-read primitive that may be combined with large-file targets for DoS. The behaviour is triggered with PostCSS's default options — no from, no map, no plugins required — and is therefore reachable from any pipeline that runs untrusted CSS through PostCSS (CMS themes, user-uploaded styles, browser-extension/userstyle processors, build pipelines for third-party packages, blog comment renderers, etc.). This issue has been fixed in version 8.5.12.
  • CVE-2026-67213: nanoid (Nano ID) before 5.1.6 contains an infinite loop in the customAlphabet and customRandom functions. When these functions are configured with a size of 0, the internal generation loop never satisfies its exit condition and spins indefinitely, hanging the calling thread. An application that passes an unvalidated, attacker-controlled size of 0 to these functions is exposed to a denial-of-service condition.
  • CVE-2026-67214: nanoid (Nano ID) before 5.1.16 contains an infinite loop in the customAlphabet and nanoid functions of its non-secure module (nanoid/non-secure). When these functions are given a negative size, the loop counter is decremented from a negative value and never reaches its termination condition, spinning indefinitely and hanging the calling thread. An application that passes an unvalidated, attacker-controlled negative size to these functions is exposed to a denial-of-service condition.
  • CVE-2026-69153: PostCSS takes a CSS file and provides an API to analyze and modify its rules by transforming the rules into an Abstract Syntax Tree. Prior to 8.5.19, if from is unset, an attacker can cause PreviousMap.loadFile() to read an unintended source-map file by supplying an absolute or directory-traversal sourceMappingURL. The resulting map’s sources and sourcesContent may then be exposed to the application. This issue is fixed in version 8.5.19.
  • CVE-2026-73086: nanoid is a secure, URL-friendly, unique string ID generator for JavaScript. Prior to versions 3.3.12 and 5.1.11, the nanoid(size) function in index.js and index.cjs coerces the user-influenced size parameter to a signed 32-bit integer, allowing a value of 2147483648 to become -2147483648 and corrupt the process-wide CSPRNG poolOffset in fillPool(), which causes subsequent session tokens, CSRF tokens, API keys, and unique identifiers to become the deterministic string "uuuuuuuuuuuuuuuuuuuuu" until the process restarts. This issue is fixed in versions 3.3.12 and 5.1.11.
1 issue postponed or untriaged:
  • CVE-2026-41305: (postponed; to be fixed through a stable update) PostCSS takes a CSS file and provides an API to analyze and modify its rules by transforming the rules into an Abstract Syntax Tree. Versions prior to 8.5.10 do not escape `</style>` sequences when stringifying CSS ASTs. When user-submitted CSS is parsed and re-stringified for embedding in HTML `<style>` tags, `</style>` in CSS values breaks out of the style context, enabling XSS. Version 8.5.10 fixes the issue.
Created: 2026-07-28 Last update: 2026-08-14 20:30
6 security issues in bookworm high

There are 6 open security issues in bookworm.

5 important issues:
  • CVE-2026-45623: PostCSS takes a CSS file and provides an API to analyze and modify its rules by transforming the rules into an Abstract Syntax Tree. In versions 8.5.11 and prior, the PreviousMap parses the /*# sourceMappingURL=PATH */ comment from any CSS string passed to process() and dereferences PATH against the local filesystem with no scheme, allowlist, or traversal check. An attacker who controls the CSS input can cause the host process to read any file readable by Node and leak the first ~10 bytes of its content through the resulting JSON.parse SyntaxError message. The bug also yields a precise file-existence oracle and a controllable-read primitive that may be combined with large-file targets for DoS. The behaviour is triggered with PostCSS's default options — no from, no map, no plugins required — and is therefore reachable from any pipeline that runs untrusted CSS through PostCSS (CMS themes, user-uploaded styles, browser-extension/userstyle processors, build pipelines for third-party packages, blog comment renderers, etc.). This issue has been fixed in version 8.5.12.
  • CVE-2026-67213: nanoid (Nano ID) before 5.1.6 contains an infinite loop in the customAlphabet and customRandom functions. When these functions are configured with a size of 0, the internal generation loop never satisfies its exit condition and spins indefinitely, hanging the calling thread. An application that passes an unvalidated, attacker-controlled size of 0 to these functions is exposed to a denial-of-service condition.
  • CVE-2026-67214: nanoid (Nano ID) before 5.1.16 contains an infinite loop in the customAlphabet and nanoid functions of its non-secure module (nanoid/non-secure). When these functions are given a negative size, the loop counter is decremented from a negative value and never reaches its termination condition, spinning indefinitely and hanging the calling thread. An application that passes an unvalidated, attacker-controlled negative size to these functions is exposed to a denial-of-service condition.
  • CVE-2026-69153: PostCSS takes a CSS file and provides an API to analyze and modify its rules by transforming the rules into an Abstract Syntax Tree. Prior to 8.5.19, if from is unset, an attacker can cause PreviousMap.loadFile() to read an unintended source-map file by supplying an absolute or directory-traversal sourceMappingURL. The resulting map’s sources and sourcesContent may then be exposed to the application. This issue is fixed in version 8.5.19.
  • CVE-2026-73086: nanoid is a secure, URL-friendly, unique string ID generator for JavaScript. Prior to versions 3.3.12 and 5.1.11, the nanoid(size) function in index.js and index.cjs coerces the user-influenced size parameter to a signed 32-bit integer, allowing a value of 2147483648 to become -2147483648 and corrupt the process-wide CSPRNG poolOffset in fillPool(), which causes subsequent session tokens, CSRF tokens, API keys, and unique identifiers to become the deterministic string "uuuuuuuuuuuuuuuuuuuuu" until the process restarts. This issue is fixed in versions 3.3.12 and 5.1.11.
1 issue postponed or untriaged:
  • CVE-2026-41305: (needs triaging) PostCSS takes a CSS file and provides an API to analyze and modify its rules by transforming the rules into an Abstract Syntax Tree. Versions prior to 8.5.10 do not escape `</style>` sequences when stringifying CSS ASTs. When user-submitted CSS is parsed and re-stringified for embedding in HTML `<style>` tags, `</style>` in CSS values breaks out of the style context, enabling XSS. Version 8.5.10 fixes the issue.
Created: 2026-04-26 Last update: 2026-08-14 20:30
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-08-02 Last update: 2026-08-02 04:18
6 low-priority security issues in trixie low

There are 6 open security issues in trixie.

6 issues left for the package maintainer to handle:
  • CVE-2026-41305: (needs triaging) PostCSS takes a CSS file and provides an API to analyze and modify its rules by transforming the rules into an Abstract Syntax Tree. Versions prior to 8.5.10 do not escape `</style>` sequences when stringifying CSS ASTs. When user-submitted CSS is parsed and re-stringified for embedding in HTML `<style>` tags, `</style>` in CSS values breaks out of the style context, enabling XSS. Version 8.5.10 fixes the issue.
  • CVE-2026-45623: (needs triaging) PostCSS takes a CSS file and provides an API to analyze and modify its rules by transforming the rules into an Abstract Syntax Tree. In versions 8.5.11 and prior, the PreviousMap parses the /*# sourceMappingURL=PATH */ comment from any CSS string passed to process() and dereferences PATH against the local filesystem with no scheme, allowlist, or traversal check. An attacker who controls the CSS input can cause the host process to read any file readable by Node and leak the first ~10 bytes of its content through the resulting JSON.parse SyntaxError message. The bug also yields a precise file-existence oracle and a controllable-read primitive that may be combined with large-file targets for DoS. The behaviour is triggered with PostCSS's default options — no from, no map, no plugins required — and is therefore reachable from any pipeline that runs untrusted CSS through PostCSS (CMS themes, user-uploaded styles, browser-extension/userstyle processors, build pipelines for third-party packages, blog comment renderers, etc.). This issue has been fixed in version 8.5.12.
  • CVE-2026-67213: (needs triaging) nanoid (Nano ID) before 5.1.6 contains an infinite loop in the customAlphabet and customRandom functions. When these functions are configured with a size of 0, the internal generation loop never satisfies its exit condition and spins indefinitely, hanging the calling thread. An application that passes an unvalidated, attacker-controlled size of 0 to these functions is exposed to a denial-of-service condition.
  • CVE-2026-67214: (needs triaging) nanoid (Nano ID) before 5.1.16 contains an infinite loop in the customAlphabet and nanoid functions of its non-secure module (nanoid/non-secure). When these functions are given a negative size, the loop counter is decremented from a negative value and never reaches its termination condition, spinning indefinitely and hanging the calling thread. An application that passes an unvalidated, attacker-controlled negative size to these functions is exposed to a denial-of-service condition.
  • CVE-2026-69153: (needs triaging) PostCSS takes a CSS file and provides an API to analyze and modify its rules by transforming the rules into an Abstract Syntax Tree. Prior to 8.5.19, if from is unset, an attacker can cause PreviousMap.loadFile() to read an unintended source-map file by supplying an absolute or directory-traversal sourceMappingURL. The resulting map’s sources and sourcesContent may then be exposed to the application. This issue is fixed in version 8.5.19.
  • CVE-2026-73086: (needs triaging) nanoid is a secure, URL-friendly, unique string ID generator for JavaScript. Prior to versions 3.3.12 and 5.1.11, the nanoid(size) function in index.js and index.cjs coerces the user-influenced size parameter to a signed 32-bit integer, allowing a value of 2147483648 to become -2147483648 and corrupt the process-wide CSPRNG poolOffset in fillPool(), which causes subsequent session tokens, CSRF tokens, API keys, and unique identifiers to become the deterministic string "uuuuuuuuuuuuuuuuuuuuu" until the process restarts. This issue is fixed in versions 3.3.12 and 5.1.11.

You can find information about how to handle these issues in the security team's documentation.

Created: 2026-04-26 Last update: 2026-08-14 20:30
news
[rss feed]
  • [2026-08-15] Accepted node-postcss 8.5.26+~cs10.2.24-1 (source) into unstable (Xavier Guimard)
  • [2026-08-06] node-postcss 8.5.25+~cs10.2.23-1 MIGRATED to testing (Debian testing watch)
  • [2026-08-01] Accepted node-postcss 8.5.25+~cs10.2.23-1 (source) into unstable (Xavier Guimard)
  • [2026-07-28] Accepted node-postcss 8.5.23+~cs10.2.23-1 (source) into unstable (Xavier Guimard)
  • [2026-07-21] Accepted node-postcss 8.5.21+~cs10.2.23-1 (source) into unstable (Xavier Guimard)
  • [2026-07-16] Accepted node-postcss 8.5.19+~cs10.2.23-1 (source) into unstable (Xavier Guimard)
  • [2026-06-27] node-postcss 8.5.15+~cs9.3.39-1 MIGRATED to testing (Debian testing watch)
  • [2026-06-25] node-postcss 8.5.15+~cs9.3.38-1 MIGRATED to testing (Debian testing watch)
  • [2026-06-24] Accepted node-postcss 8.5.15+~cs9.3.39-1 (source) into unstable (Xavier Guimard)
  • [2026-06-20] Accepted node-postcss 8.5.15+~cs9.3.38-1 (source) into unstable (Xavier Guimard)
  • [2026-05-28] node-postcss 8.5.15+~cs9.3.34-1 MIGRATED to testing (Debian testing watch)
  • [2026-05-23] Accepted node-postcss 8.5.15+~cs9.3.34-1 (source) into unstable (Xavier Guimard)
  • [2026-05-19] node-postcss 8.5.14+~cs9.3.34-1 MIGRATED to testing (Debian testing watch)
  • [2026-05-05] Accepted node-postcss 8.5.14+~cs9.3.34-1 (source) into unstable (Xavier Guimard)
  • [2026-05-03] node-postcss 8.5.12+~cs9.3.32-1 MIGRATED to testing (Debian testing watch)
  • [2026-04-26] Accepted node-postcss 8.5.12+~cs9.3.32-1 (source) into unstable (Xavier Guimard)
  • [2026-04-15] node-postcss 8.5.9+~cs9.3.30-1 MIGRATED to testing (Debian testing watch)
  • [2026-04-09] Accepted node-postcss 8.5.9+~cs9.3.30-1 (source) into unstable (Xavier Guimard)
  • [2026-04-03] node-postcss 8.5.8+~cs9.3.30-1 MIGRATED to testing (Debian testing watch)
  • [2026-03-28] Accepted node-postcss 8.5.8+~cs9.3.30-1 (source) into unstable (Xavier Guimard)
  • [2025-08-15] node-postcss 8.5.6+~cs9.3.28-1 MIGRATED to testing (Debian testing watch)
  • [2025-08-10] Accepted node-postcss 8.5.6+~cs9.3.28-1 (source) into unstable (Yadd) (signed by: Xavier Guimard)
  • [2025-01-15] Accepted node-postcss 8.4.20+~cs8.0.23-1+deb12u1 (source) into proposed-updates (Debian FTP Masters) (signed by: Bastien ROUCARIÈS)
  • [2024-12-26] Accepted node-postcss 8.2.1+~cs5.3.23-8+deb11u1 (source) into oldstable-security (Bastien Roucariès) (signed by: Bastien ROUCARIÈS)
  • [2024-12-15] node-postcss 8.4.49+~cs9.2.32-1 MIGRATED to testing (Debian testing watch)
  • [2024-12-12] Accepted node-postcss 8.4.49+~cs9.2.32-1 (source) into unstable (Yadd) (signed by: Xavier Guimard)
  • [2024-08-03] node-postcss 8.4.39+~cs9.2.29-1 MIGRATED to testing (Debian testing watch)
  • [2024-07-02] Accepted node-postcss 8.4.39+~cs9.2.29-1 (source) into unstable (Yadd) (signed by: Xavier Guimard)
  • [2023-10-20] node-postcss 8.4.31+~cs8.0.26-1 MIGRATED to testing (Debian testing watch)
  • [2023-10-17] Accepted node-postcss 8.4.31+~cs8.0.26-1 (source) into unstable (Yadd) (signed by: Xavier Guimard)
  • 1
  • 2
bugs [bug history graph]
  • all: 1
  • RC: 0
  • I&N: 0
  • M&W: 1
  • F&P: 0
  • patch: 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: 8.5.25+~cs10.2.23-1

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