CVE-2023-33498: alist Incorrect Access Control vulnerability
8.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.29759%
CWE
Published
6/7/2023
Updated
11/10/2023
KEV Status
No
Technology
Go
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
| Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
|---|---|---|---|
| github.com/alist-org/alist/v3 | go | <= 3.16.3 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability description indicates improper access control in file upload functionality. While no specific code is shown, Go web applications typically handle uploads via controller functions. The combination of CWE-434 (unrestricted file upload) and the access control failure strongly suggests the upload handler function lacks: 1) Proper authorization checks verifying user privileges before accepting uploads, and 2) File type validation logic. The 'api' package and 'controllers' directory are common patterns for request handlers in Go web applications, making this the most likely location for the vulnerable upload processing logic.