Skip to content

fix(deps): update dependency nanoid to v5.1.16 [security] - #652

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/npm-nanoid-vulnerability
Open

fix(deps): update dependency nanoid to v5.1.16 [security]#652
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/npm-nanoid-vulnerability

Conversation

@renovate

@renovate renovate Bot commented Aug 26, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
nanoid 5.1.65.1.16 age adoption passing confidence

nanoid: non-secure generators can loop indefinitely with negative size

CVE-2026-67214 / GHSA-28wg-ghj8-5hjv

More information

Details

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.

Severity

  • CVSS Score: 8.2 / 10 (High)
  • Vector String: CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


nanoid: custom generators can loop indefinitely when size is zero

CVE-2026-67213 / GHSA-2v37-7h3g-55p8

More information

Details

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.

Severity

  • CVSS Score: 8.2 / 10 (High)
  • Vector String: CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


nanoid: Integer Overflow or Wraparound

CVE-2026-73086 / GHSA-xwg4-73v4-xw9w

More information

Details

Summary

An integer overflow in nanoid(size) permanently corrupts the process-wide CSPRNG pool, causing all subsequent ID generation to return the deterministic string "uuuuuuuuuuuuuuuuuuuuu". Any application that passes user-influenced values to the size parameter loses all randomness guarantees for session tokens, CSRF tokens, and unique identifiers until process restart.

Details

nanoid() at index.js:101 coerces the size parameter with size |= 0, which converts it to a signed 32-bit integer. When size >= 2^31 (e.g., 2147483648), this wraps to -2147483648.

The negative value is passed to fillPool() (index.js:15):

function fillPool(bytes) {
  if (!pool || pool.length < bytes) {       // false: pool exists, -2B < pool.length
    pool = Buffer.allocUnsafe(bytes * POOL_SIZE_MULTIPLIER)
    crypto.getRandomValues(pool)
    poolOffset = 0
  } else if (poolOffset + bytes > pool.length) {  // false: poolOffset + (-2B) < pool.length
    crypto.getRandomValues(pool)
    poolOffset = 0
  }
  poolOffset += bytes  // poolOffset += -2147483648 → deeply negative
}

Neither branch triggers, so the pool is never refreshed. poolOffset becomes ~-2.1 billion.

Subsequent nanoid() calls execute:

for (let i = poolOffset - size; i < poolOffset; i++) {
  id += scopedUrlAlphabet[pool[i] & 63]
}

pool[negative_index] returns undefined. undefined & 63 evaluates to 0. urlAlphabet[0] is 'u'. Every ID becomes "uuuuuuuuuuuuuuuuuuuuu".

The corruption is persistent — it affects all subsequent calls in the process until ~100 million calls eventually wrap poolOffset back to positive, or the process restarts.

PoC
import { nanoid } from 'nanoid'

// Step 1: Normal operation
console.log(nanoid())  // e.g., "V1StGXR8_Z5jdHi6B-myT"

// Step 2: Trigger overflow (e.g., from an API parameter)
try { nanoid(2147483648) } catch(e) {}

// Step 3: All subsequent IDs are deterministic
console.log(nanoid())  // "uuuuuuuuuuuuuuuuuuuuu"
console.log(nanoid())  // "uuuuuuuuuuuuuuuuuuuuu"
console.log(nanoid())  // "uuuuuuuuuuuuuuuuuuuuu"
// ... forever, process-wide

Run with: node --experimental-vm-modules poc.mjs

Attack scenario: Any API endpoint that accepts a user-controlled length/size parameter (URL shortener slug length, configurable token size, etc.) and passes it to nanoid(userInput).

Impact

Complete loss of ID unpredictability and uniqueness, process-wide, from a single request.

  • All session IDs, CSRF tokens, API keys, and database identifiers generated after the attack are identical and predictable
  • An attacker can predict all tokens issued to other users, enabling session hijacking and authentication bypass
  • The corruption is persistent (survives across requests) and affects all consumers of nanoid in the same process
  • No special privileges or preconditions required — a single unauthenticated request is sufficient
  • Affects any application that passes external input to the size parameter without validation

Severity

  • CVSS Score: 7.4 / 10 (High)
  • Vector String: CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:N

References

This data is provided by the GitHub Advisory Database (CC-BY 4.0).


Release Notes

ai/nanoid (nanoid)

v5.1.16

Compare Source

v5.1.15

Compare Source

  • Fixed random pool corruption on big ID sizes.

v5.1.14

Compare Source

  • Fixed npm package size regression.

v5.1.13

Compare Source

  • Fixed npm package size regression.

v5.1.12

Compare Source

  • Moved to npm Provenance and Staged Publishing.

v5.1.11

Compare Source

  • Fixed breaking Nano ID by requesting big ID.

v5.1.10

Compare Source

v5.1.9

Compare Source

  • Fixed npm package size regression.

v5.1.8

Compare Source

v5.1.7

Compare Source


Configuration

📅 Schedule: (in timezone Asia/Shanghai)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the renovate label Aug 26, 2026
@vercel

vercel Bot commented Aug 26, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated
shiro Error Error Sep 7, 2026 9:57pm UTC

@renovate
renovate Bot enabled auto-merge (squash) August 26, 2026 20:35
@safedep

safedep Bot commented Aug 26, 2026

Copy link
Copy Markdown

SafeDep Report Summary

Green Malicious Packages Badge Red Vulnerable Packages Badge Green Risky License Badge

Package Details
Package Malware Vulnerability Risky License Report
vite @ 8.0.0
npm pnpm-lock.yaml
✔️ ✔️ 🔗
@antfu/install-pkg @ 2.0.1
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@codemirror/autocomplete @ 6.20.3
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@codemirror/commands @ 6.11.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@codemirror/lang-html @ 6.4.12
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@codemirror/lang-jinja @ 6.0.1
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@codemirror/lang-markdown @ 6.5.2
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@codemirror/lang-yaml @ 6.1.3
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@codemirror/language @ 6.12.4
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@codemirror/legacy-modes @ 6.5.4
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@codemirror/lint @ 6.9.7
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@codemirror/state @ 6.7.4
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@codemirror/view @ 6.43.11
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@floating-ui/core @ 1.8.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@floating-ui/dom @ 1.8.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@floating-ui/react-dom @ 2.1.9
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@floating-ui/utils @ 0.2.12
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/cm-editor @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-editor @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-editor-ui @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-ext-code-snippet @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-ext-embed @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-ext-excalidraw @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-ext-gallery @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-ext-nested-doc @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-headless @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-kit-shiro @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-plugin-block-handle @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-plugin-floating-toolbar @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-plugin-link-edit @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-plugin-mention @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-plugin-slash-menu @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-plugin-table @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-plugin-toolbar @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-renderer-alert @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-renderer-banner @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-renderer-codeblock @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-renderer-image @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-renderer-katex @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-renderer-linkcard @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-renderer-mention @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-renderer-mermaid @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-renderer-ruby @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-renderer-video @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-renderers @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-renderers-edit @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-static-renderer @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@haklex/rich-style-token @ 0.0.105
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@iconify-json/material-icon-theme @ 1.2.70
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@iconify/utils @ 3.1.7
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@icons-pack/react-simple-icons @ 13.15.1
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lexical/clipboard @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lexical/code-core @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lexical/dragon @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lexical/extension @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lexical/headless @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lexical/html @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lexical/link @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lexical/list @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lexical/markdown @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lexical/rich-text @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lexical/selection @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lexical/table @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lexical/text @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lexical/utils @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lezer/common @ 1.5.2
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lezer/cpp @ 1.1.6
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lezer/css @ 1.3.6
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lezer/lr @ 1.4.10
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lezer/markdown @ 1.7.2
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lezer/php @ 1.0.6
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@lezer/python @ 1.1.19
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@marijn/find-cluster-break @ 1.0.4
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@mermaid-js/parser @ 1.2.1
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@napi-rs/wasm-runtime @ 1.2.3
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@oxc-project/types @ 0.148.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@preact/signals-core @ 1.14.4
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@rolldown/pluginutils @ 1.0.1
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@shikijs/core @ 4.4.3
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@shikijs/engine-javascript @ 4.4.3
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@shikijs/engine-oniguruma @ 4.4.3
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@shikijs/langs @ 4.4.3
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@shikijs/primitive @ 4.4.3
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@shikijs/themes @ 4.4.3
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@shikijs/types @ 4.4.3
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@tybys/wasm-util @ 0.10.3
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
@types/hast @ 3.0.5
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
ajv @ 6.15.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
buffer-image-size @ 0.6.4
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
crelt @ 1.0.7
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
cytoscape @ 3.34.3
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
cytoscape-cose-bilkent @ 4.1.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
cytoscape-fcose @ 2.2.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
dayjs @ 1.11.23
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
dompurify @ 3.4.15
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
es-toolkit @ 1.52.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
fastdom @ 1.0.12
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
happy-dom @ 20.14.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
import-meta-resolve @ 4.2.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
katex @ 0.16.47
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
lexical @ 0.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
lightningcss @ 1.33.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
lodash-es @ 4.18.1
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
lucide-react @ 1.42.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
mermaid @ 11.17.2
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
nanoid @ 5.1.16
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
nanoid @ 3.3.18
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
oniguruma-parser @ 0.12.2
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
oniguruma-to-es @ 4.3.6
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
package-manager-detector @ 1.8.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
picomatch @ 4.0.7
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
postcss @ 8.5.28
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
react-intersection-observer @ 10.1.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
rolldown @ 1.2.7
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
semver @ 7.8.5
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
shiki @ 4.4.3
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
strictdom @ 1.0.1
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
stylis @ 4.4.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
tinyexec @ 1.3.1
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
tinyglobby @ 0.2.17
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
ts-dedent @ 2.3.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
uuid @ 14.0.2
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
vitest @ 4.1.0
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗
ws @ 8.21.3
npm pnpm-lock.yaml
✔️ ✔️ ✔️ 🔗

View complete scan results →

This report is generated by SafeDep GitHub App

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants