Deserialization of arbitrary data leads to RCE in librenms/librenms

Valid

Reported on

Oct 8th 2022


Description

LibreNMS includes support for monitoring applications, one of which is memcached. When polling for memcached, the data returned by the agent to the LibreNMS server is not verified before it is deserialized.

Because LibreNMS has quite a few dependencies, it is easy to find a working gadget chain to exploit this arbitrary deserialization vulnerability. The code in the POC uses Laravel/Rce9 from the PHPGGC project.

This vulnerability enables a monitored device to gain remote code execution on the monitoring server.

Proof of Concept

The first steps are performed on an attacker controlled device.

First we generate a payload with PHPGGC, in this case we will just make it drop a file in the /tmp folder, but this could be anything.

./phpggc laravel/rce9 shell_exec 'echo deserialization_is_awesome > /tmp/this_is_a_bad_vuln' > /tmp/exploit_payload

Next we install snmpd on the attacker server, and add this line to /etc/snmp/snmpd.conf to make it return the payload when queried by the monitoring server for memcached:

extend memcached /usr/bin/cat /tmp/exploit_payload

Now, moving to the the victim monitoring server, we add the attacker's device to be monitored (if configured for auto-discovery, this step would not be required, this configuration setting determines whether or not user interaction is required for exploitation). After adding and polling the device for the first time, the file /tmp/this_is_a_bad_vuln should have been added, indicating we executed code on the monitoring server.

Impact

This vulnerability allows a user with access to a monitored device to take control of the monitoring server.

Occurrences

This is the line where the vulnerability is introduced. The $data variable is set using attacker-controlled content, and it's type is not verified (it expects to be unserialized to an array but this is not enforced).

We are processing your report and will contact the librenms team within 24 hours. a year ago
A GitHub Issue asking the maintainers to create a SECURITY.md exists a year ago
We have contacted a member of the librenms team and are waiting to hear back a year ago
We have sent a follow up to the librenms team. We will try again in 7 days. a year ago
Tony Murray validated this vulnerability a year ago
hordalex has been awarded the disclosure bounty
The fix bounty is now up for grabs
The researcher's credibility has increased: +7
Tony Murray marked this as fixed in 22.10.0 with commit ae3925 a year ago
The fix bounty has been dropped
This vulnerability has been assigned a CVE
memcached.inc.php#L13 has been validated
Tony Murray published this vulnerability a year ago
to join this conversation