Skip to content

Commit f4bab3a

Browse files
1 parent e8c9309 commit f4bab3a

3 files changed

Lines changed: 13 additions & 22 deletions

File tree

advisories/github-reviewed/2025/11/GHSA-6cqf-cfhv-659g/GHSA-6cqf-cfhv-659g.json

Lines changed: 7 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,24 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-6cqf-cfhv-659g",
4-
"modified": "2025-11-13T22:34:51Z",
4+
"modified": "2026-02-03T17:23:10Z",
55
"published": "2025-11-13T22:34:51Z",
66
"aliases": [
77
"CVE-2025-64523"
88
],
99
"summary": "File Browser is Vulnerable to Insecure Direct Object Reference (IDOR) in Share Deletion Function",
1010
"details": "### Summary\nIt has been found an Insecure Direct Object Reference (IDOR) vulnerability in the FileBrowser application's share deletion functionality. This vulnerability allows any authenticated user with share permissions to delete other users' shared links without authorization checks.\n\nThe impact is significant as malicious actors can disrupt business operations by systematically removing shared files and links. This leads to denial of service for legitimate users, potential data loss in collaborative environments, and breach of data confidentiality agreements. In organizational settings, this could affect critical file sharing for projects, presentations, or document collaboration.\n\n### Details\n**Technical Analysis**\n\nThe vulnerability exists in` /http/share.go` at lines 72-82. The shareDeleteHandler function processes deletion requests using only the share hash without comparing the link.UserID with the current authenticated user's ID (d.user.ID). This missing authorization check enables the vulnerability.\n\n```\nvar shareDeleteHandler = withPermShare(func(_ http.ResponseWriter, r *http.Request, d *data) (int, error) {\n hash := strings.TrimSuffix(r.URL.Path, \"/\")\n hash = strings.TrimPrefix(hash, \"/\")\n\n if hash == \"\" {\n return http.StatusBadRequest, nil\n }\n\n err := d.store.Share.Delete(hash) // Missing ownership validation\n return errToStatus(err), err\n})\n```\n\n### PoC\n**Reproduce Steps:**\n\nPrerequisites: Two authenticated user accounts (User A and User B) with share permissions\n\nStep 1: User A creates a share link and obtains the share hash (e.g., MEEuZK-v)\n\nStep 2: User B authenticates and obtains a valid JWT token\n\nStep 3: User B sends DELETE request to /api/share/MEEuZK-v with their own JWT token\n\nStep 4: Observe that User A's share is deleted without authorization\n\nDELETE /api/share/MEEuZK-v HTTP/1.1\nHost: filebrowser.local\nContent-Type: application/json\n\n### Impact\n\nThe impact is significant as malicious actors can disrupt business operations by systematically removing shared files and links. This leads to denial of service for legitimate users, potential data loss in collaborative environments, and breach of data confidentiality agreements. In organizational settings, this could affect critical file sharing for projects, presentations, or document collaboration.",
1111
"severity": [
12+
{
13+
"type": "CVSS_V3",
14+
"score": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H"
15+
},
1216
{
1317
"type": "CVSS_V4",
1418
"score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:H/VA:H/SC:N/SI:N/SA:N"
1519
}
1620
],
1721
"affected": [
18-
{
19-
"package": {
20-
"ecosystem": "Go",
21-
"name": "github.com/filebrowser/filebrowser"
22-
},
23-
"ranges": [
24-
{
25-
"type": "ECOSYSTEM",
26-
"events": [
27-
{
28-
"introduced": "0"
29-
}
30-
]
31-
}
32-
],
33-
"database_specific": {
34-
"last_known_affected_version_range": "< 2.45.1"
35-
}
36-
},
3722
{
3823
"package": {
3924
"ecosystem": "Go",
@@ -74,7 +59,8 @@
7459
],
7560
"database_specific": {
7661
"cwe_ids": [
77-
"CWE-285"
62+
"CWE-285",
63+
"CWE-639"
7864
],
7965
"severity": "HIGH",
8066
"github_reviewed": true,

advisories/github-reviewed/2026/01/GHSA-43mm-m3h2-3prc/GHSA-43mm-m3h2-3prc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
7474
],
7575
"database_specific": {
7676
"cwe_ids": [
77+
"CWE-203",
7778
"CWE-208"
7879
],
7980
"severity": "MODERATE",

advisories/github-reviewed/2026/01/GHSA-7c2f-r6gc-h92h/GHSA-7c2f-r6gc-h92h.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"schema_version": "1.4.0",
33
"id": "GHSA-7c2f-r6gc-h92h",
4-
"modified": "2026-01-16T21:00:10Z",
4+
"modified": "2026-02-03T17:22:47Z",
55
"published": "2026-01-16T12:30:25Z",
66
"aliases": [
77
"CVE-2025-68675"
@@ -40,6 +40,10 @@
4040
"type": "ADVISORY",
4141
"url": "https://nvd.nist.gov/vuln/detail/CVE-2025-68675"
4242
},
43+
{
44+
"type": "WEB",
45+
"url": "https://github.com/apache/airflow/pull/59688"
46+
},
4347
{
4448
"type": "PACKAGE",
4549
"url": "https://github.com/apache/airflow"

0 commit comments

Comments
 (0)