Skip to content

Commit 0b91f3c

Browse files
1 parent c2ef51a commit 0b91f3c

File tree

1 file changed

+72
-0
lines changed

1 file changed

+72
-0
lines changed
Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
{
2+
"schema_version": "1.4.0",
3+
"id": "GHSA-xrcr-gmf5-2r8j",
4+
"modified": "2026-03-05T19:26:02Z",
5+
"published": "2026-03-05T19:26:02Z",
6+
"aliases": [
7+
"CVE-2026-26022"
8+
],
9+
"summary": "Gogs: Stored XSS via data URI in issue comments",
10+
"details": "### Summary\nA Stored Cross-site Scripting (XSS) vulnerability exists in the comment and issue description functionality. The application's HTML sanitizer explicitly allows `data:` URI schemes, enabling authenticated users to inject arbitrary JavaScript execution via malicious links.\n\n### Details\nThe vulnerability is located in `internal/markup/sanitizer.go`. The application uses the `bluemonday` HTML sanitizer but explicitly weakens the security policy by allowing the `data` URL scheme:\n\n```go\n// internal/markup/sanitizer.go\nfunc NewSanitizer() {\n sanitizer.init.Do(func() {\n // ...\n // Data URLs\n sanitizer.policy.AllowURLSchemes(\"data\")\n // ...\n })\n}\n```\n\nWhile the Markdown renderer rewrites relative links (mitigating standard Markdown `[link](data:...)` attacks), Gogs supports **Raw HTML** input. Raw HTML anchor tags bypass the Markdown parser's link rewriting and are processed directly by the sanitizer. Since the sanitizer is configured to allow `data:` URIs, payloads like `<a href=\"data:text/html...\">` are rendered as-is.\n\n### PoC\n1. Create a file named `exploit.md` in a repository.\n2. Add the following content (Raw HTML):\n ```html\n <a href=\"data:text/html;base64,PHNjcmlwdD5hbGVydCgnWFNTJyk8L3NjcmlwdD4=\">Click me for XSS</a>\n ```\n3. Commit and push the file.\n4. Navigate to the file in the Gogs web interface.\n5. Click the \"Click me for XSS\" link.\n6. **Result:** An alert box with \"XSS\" appears, executing the JavaScript payload.\n\n### Impact\nThis is a **Stored XSS** vulnerability. Any user who views the malicious comment and clicks the link will execute the attacker-supplied JavaScript in their browser context. This allows attackers to:\n* Steal authentication cookies and session tokens.\n* Perform arbitrary actions on behalf of the victim (e.g., modifying repositories, adding collaborators).\n* Redirect users to malicious sites.",
11+
"severity": [
12+
{
13+
"type": "CVSS_V3",
14+
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:N"
15+
}
16+
],
17+
"affected": [
18+
{
19+
"package": {
20+
"ecosystem": "Go",
21+
"name": "gogs.io/gogs"
22+
},
23+
"ranges": [
24+
{
25+
"type": "ECOSYSTEM",
26+
"events": [
27+
{
28+
"introduced": "0"
29+
},
30+
{
31+
"fixed": "0.14.2"
32+
}
33+
]
34+
}
35+
],
36+
"database_specific": {
37+
"last_known_affected_version_range": "<= 0.14.1"
38+
}
39+
}
40+
],
41+
"references": [
42+
{
43+
"type": "WEB",
44+
"url": "https://github.com/gogs/gogs/security/advisories/GHSA-xrcr-gmf5-2r8j"
45+
},
46+
{
47+
"type": "WEB",
48+
"url": "https://github.com/gogs/gogs/pull/8174"
49+
},
50+
{
51+
"type": "WEB",
52+
"url": "https://github.com/gogs/gogs/commit/441c64d7bd8893b2f4e48660a8be3a7472e14291"
53+
},
54+
{
55+
"type": "PACKAGE",
56+
"url": "https://github.com/gogs/gogs"
57+
},
58+
{
59+
"type": "WEB",
60+
"url": "https://github.com/gogs/gogs/releases/tag/v0.14.2"
61+
}
62+
],
63+
"database_specific": {
64+
"cwe_ids": [
65+
"CWE-79"
66+
],
67+
"severity": "HIGH",
68+
"github_reviewed": true,
69+
"github_reviewed_at": "2026-03-05T19:26:02Z",
70+
"nvd_published_at": null
71+
}
72+
}

0 commit comments

Comments
 (0)