VYPR
Low severityNVD Advisory· Published Apr 21, 2020· Updated Aug 4, 2024

Information disclosure of source code in SimpleSAMLphp

CVE-2020-5301

Description

SimpleSAMLphp versions before 1.18.6 contain an information disclosure vulnerability. The module controller in SimpleSAML\Module that processes requests for pages hosted by modules, has code to identify paths ending with .php and process those as PHP code. If no other suitable way of handling the given path exists it presents the file to the browser. The check to identify paths ending with .php does not account for uppercase letters. If someone requests a path ending with e.g. .PHP and the server is serving the code from a case-insensitive file system, such as on Windows, the processing of the PHP code does not occur, and the source code is instead presented to the browser. An attacker may use this issue to gain access to the source code in third-party modules that is meant to be private, or even sensitive. However, the attack surface is considered small, as the attack will only work when SimpleSAMLphp serves such content from a file system that is not case-sensitive, such as on Windows. This issue is fixed in version 1.18.6.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
simplesamlphp/simplesamlphpPackagist
< 1.18.61.18.6

Affected products

1

Patches

1
47968d26a2fd

Fix source code disclosure on case-insensitive file systems

https://github.com/simplesamlphp/simplesamlphpOlav MorkenApr 16, 2020via ghsa
1 file changed · +1 1
  • lib/SimpleSAML/Module.php+1 1 modified
    @@ -259,7 +259,7 @@ function ($val) {
                 throw new Error\NotFound('The URL wasn\'t found in the module.');
             }
     
    -        if (substr($path, -4) === '.php') {
    +        if (mb_strtolower(substr($path, -4), 'UTF-8') === '.php') {
                 // PHP file - attempt to run it
     
                 /* In some environments, $_SERVER['SCRIPT_NAME'] is already set with $_SERVER['PATH_INFO']. Check for that
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

6

News mentions

0

No linked articles in our index yet.