CVE-2015-0211: Moodle allows attackers to obtain sensitive information
4
CVSS Score
Basic Information
CVE ID
GHSA ID
EPSS Score
0.42396%
CWE
Published
5/13/2022
Updated
1/25/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
AV:N/AC:L/Au:S/C:P/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
moodle/moodle | composer | < 2.6.7 | 2.6.7 |
moodle/moodle | composer | >= 2.7.0, < 2.7.4 | 2.7.4 |
moodle/moodle | composer | >= 2.8.0, < 2.8.2 | 2.8.2 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing capability checks in the procedural code flow of mod/lti/ajax.php
, not from specific named functions. The original code processed the 'search' action without verifying the 'moodle/course:manageactivities' and 'mod/lti:addinstance' capabilities. The patch added require_capability()
calls directly in the script's main logic, indicating the vulnerability resided in the absence of these checks in the procedural flow. Since the issue is tied to the script's structure rather than discrete functions, no specific functions are identified.