Lucene search

K
githubGitHub Advisory DatabaseGHSA-PPM4-R2VC-PG74
HistoryMay 28, 2024 - 9:26 p.m.

SimpleSAMLphp Information Disclosure vulnerability

2024-05-2821:26:21
CWE-862
GitHub Advisory Database
github.com
7
information disclosure
vulnerability
simplesamlphp
admin interface
phpinfo()
privilege check
system host
upgrade
mitigation

6.8 Medium

AI Score

Confidence

Low

Background

SimpleSAMLphp 1.17 includes a preview of the new user interface to be included in the future version 2.0. This new user interface can be enabled by setting the usenewui configuration option to true, and it includes a new admin interface in a module called admin, which can be disabled.

Description

The new admin interface includes a way to view information about the host where SimpleSAMLphp is installed, by means of the phpinfo() PHP function. An endpoint that exposes the output of that function is included in the admin module for easier debugging.

The aforementioned endpoint had no checks for administrator privileges. This would allow any individual to access the given endpoint without authenticating, gathering information about the affected system.

Affected versions

All SimpleSAMLphp 1.17 versions up to 1.17.7 are affected, provided that the new, experimental use interface is enabled, together with the new admin module.

Impact

An attacker could leverage this issue by accessing the unprotected endpoint and gather intelligence about the host where SimpleSAMLphp is deployed, using it later for their own advantage in case other issues arise.

However, the impact of this issue is deemed as low, given that the new user interface must be explicitly enabled by means of the usenewui configuration option, and the new admin module must also be enabled.

Resolution

Upgrade to SimpleSAMLphp 1.17.8 or 1.18. This can be done by downloading the package, or by running composer update. Refer to the documentation for instructions on how to run composer.

Alternatively, the issue can be mitigated by either disabling the new user interface by setting the usenewui configuration option to false, or by disabling the admin module in the configuration:

    'module.enable' => [
        ...
        'admin' => false,
        ...
    ],

Affected configurations

Vulners
Node
simplesamlphpsimplesamlphpRange<1.17.8
CPENameOperatorVersion
simplesamlphp/simplesamlphplt1.17.8

6.8 Medium

AI Score

Confidence

Low