CVE-2025-1472:
Mattermost Fails to Properly Perform Viewer Role Authorization
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.08332%
CWE
Published
3/19/2025
Updated
3/19/2025
KEV Status
No
Technology
Go
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
github.com/mattermost/mattermost/server/v8 | go | ||
github.com/mattermost/mattermost-server | go |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability centers on improper authorization checks for reporting features. Mattermost's analytics endpoints would logically be handled in API handlers (api4 package) calling core analytics logic (app package). The pattern matches Go project structure where api4
handles HTTP layer and app
handles business logic. High confidence comes from: 1) The vulnerability manifests in statistics access 2) Authorization must be checked at both API and app
layers 3) 'Viewer role with No Access to Reporting' implies missing check between role assignment and permission flags during statistics retrieval.