mediumVulnerability

GHSA-3mjm-x6gw-2x42

### Impact The HTTP server does not set `Content-Security-Policy`, `X-Frame-Options`, or `X-Content-Type-Options` headers on any response. This reduces defense-in-depth against XSS, clickjacking, and MIME-sniffing attacks. While the current XSS attack surface is small (React-markdown is configured safely, no `dangerouslySetInnerHTML`, Vite does not generate source maps), the absence of these headers means any future XSS vulnerability would have no secondary defense layer. **Affected code:** - `packages/server/src/index.ts` — all `res.writeHead()` calls only set `Content-Type`, with no security headers ### Patches 0.70.4 **Fix:** Add security headers to all HTML/API responses: ```typescript res.writeHead(200, { "Content-Type": contentType, "Content-Security-Policy": "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:", "X-Frame-Options": "DENY", "X-Content-Type-Options": "nosniff" }); ``` ### Workarounds Use a reverse proxy (nginx, Caddy) in front of the Grackle server to inject security headers. ### References - CWE-693: Protection Mechanism Failure - OWASP: HTTP Security Response Headers - File: `packages/server/src/index.ts`

Properties

ghsa_id
GHSA-3mjm-x6gw-2x42
severity
medium
summary
@grackle-ai/server has Missing Content-Security-Policy and X-Frame-Options Headers
cve_id
GHSA-3mjm-x6gw-2x42
is_ghsa_only
true
ghsa_published
2026-03-25T17:32:04Z
source_url
https://github.com/advisories/GHSA-3mjm-x6gw-2x42
ghsa_updated
2026-03-25T17:32:05Z

Related Entities (4)

AFFECTS (1)

[Software]npm/@grackle-ai/server

HAS_WEAKNESS (2)

[Weakness]Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
[Weakness]Protection Mechanism Failure

REPORTED_BY (1)

[Source]GitHub Advisory Database

Explore deeper with Ninja Signal's threat intelligence graph

GHSA-3mjm-x6gw-2x42 — Ninja Signal Threat Intelligence | Ninja Signal