Skip to content

L-4: Unescaped Error String in renderPairingPage() HTML Template

Low
nick-pape published GHSA-7q9x-8g6p-3x75 Mar 22, 2026

Package

npm @grackle-ai/server (npm)

Affected versions

<= 0.70.0

Patched versions

0.70.1

Description

Impact

The renderPairingPage() function embeds the error parameter directly into HTML without escaping:

const errorHtml = error ? `<p style="color:#e74c3c">${error}</p>` : "";

All current call sites pass hardcoded strings, so this is not exploitable today. However, the function is architecturally fragile — if a future code change passes user-controlled or dynamic content into the error parameter, it would create an XSS vulnerability.

The renderAuthorizePage() function in the same file correctly uses escapeHtml() for dynamic content, making this an inconsistency.

Affected code:

  • packages/server/src/index.ts:64-89renderPairingPage() with unescaped error interpolation
  • Compare: packages/server/src/index.ts:130renderAuthorizePage() correctly uses escapeHtml()

Patches

Not yet patched.

Fix: Apply escapeHtml() to the error parameter:

const errorHtml = error ? `<p style="color:#e74c3c">${escapeHtml(error)}</p>` : "";

Workarounds

No workaround needed — all current callers pass hardcoded strings.

References

  • CWE-79: Improper Neutralization of Input During Web Page Generation
  • File: packages/server/src/index.ts

Severity

Low

CVE ID

No known CVE

Weaknesses

No CWEs