CVE-2023-44394:
MantisBT may disclose project names to unauthorized users
4.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.51029%
CWE
Published
10/17/2023
Updated
11/10/2023
KEV Status
No
Technology
PHP
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 |
---|---|---|---|
mantisbt/mantisbt | composer | <= 2.25.7 | 2.25.8 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing access checks in wiki.php's project handling logic. The original code called project_ensure_exists() to verify project existence but did not call access_ensure_project_level() to validate user permissions. This allowed any authenticated user (even with minimal privileges) to brute-force project IDs and observe redirection URLs containing private project names. The patch added the missing access checks, confirming these were the critical missing security controls.