CVE-2026-10715
Received Received - Intake
Improper Authorization in Camaleon CMS 2.9.2

Publication date: 2026-06-12

Last updated on: 2026-06-12

Assigner: Fluid Attacks

Description
Camaleon CMS 2.9.2 contains an improper authorization vulnerability in the administrator draft autosave endpoint. A low-privileged authenticated user can send an arbitrary post_id to POST /admin/post_type/<POST_TYPE_ID>/drafts and overwrite the draft associated with another user's post.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-12
Last Modified
2026-06-12
Generated
2026-06-13
AI Q&A
2026-06-12
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 2 associated CPEs
Vendor Product Version / Range
fluidattacks camaleon_cms 2.9.2
camaleon cms 2.9.2
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-862 The product does not perform an authorization check when an actor attempts to access a resource or perform an action.
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Compliance Impact

The vulnerability allows a low-privileged authenticated user to overwrite another user's draft content due to improper authorization checks. This compromises content integrity, which could lead to unauthorized modification of data.

Such unauthorized data modification may impact compliance with standards and regulations like GDPR and HIPAA, which require ensuring data integrity and protecting user data from unauthorized access or alteration.

However, the provided information does not explicitly state the direct effects on compliance with these regulations.

Executive Summary

Camaleon CMS version 2.9.2 contains an improper authorization vulnerability in the administrator draft autosave endpoint.

A low-privileged authenticated user can send a POST request to /admin/post_type/<POST_TYPE_ID>/drafts with an arbitrary post_id, allowing them to overwrite the draft associated with another user's post.

This happens because the draft controller does not perform proper authorization checks before updating drafts, trusting the client-controlled post_id parameter to locate and modify drafts.

As a result, content integrity is compromised since malicious changes can later be reviewed or published by authorized users.

Impact Analysis

This vulnerability allows a low-privileged authenticated user to overwrite drafts belonging to other users.

The impact includes compromised content integrity, as unauthorized modifications can be made to drafts that may later be reviewed or published by authorized users.

Such unauthorized changes could lead to misinformation, defacement, or the introduction of malicious content within the CMS.

Detection Guidance

This vulnerability can be detected by monitoring for suspicious POST requests to the endpoint /admin/post_type/<POST_TYPE_ID>/drafts where an authenticated low-privileged user sends an arbitrary post_id parameter. Such requests indicate attempts to overwrite drafts belonging to other users.

To detect exploitation attempts, you can analyze web server logs or use network monitoring tools to filter POST requests to the draft autosave endpoint and check if the post_id parameter is being manipulated.

Example commands to detect such activity might include:

  • Using grep on web server logs to find POST requests to the vulnerable endpoint: grep 'POST /admin/post_type/' /var/log/nginx/access.log | grep '/drafts'
  • Using tcpdump or Wireshark to capture HTTP POST traffic to the endpoint and inspect the post_id parameter.
  • Using a web application firewall (WAF) or IDS to alert on POST requests with unusual or unauthorized post_id values.
Mitigation Strategies

Since no patch is currently available for this vulnerability, immediate mitigation steps include restricting access to the vulnerable endpoint to only trusted users and minimizing the number of users with low privileges who can authenticate.

Additional mitigation measures include:

  • Implementing strict access controls and monitoring on the /admin/post_type/<POST_TYPE_ID>/drafts endpoint.
  • Reviewing and limiting user permissions to prevent low-privileged users from accessing administrative draft autosave functionality.
  • Monitoring logs for suspicious activity as described in the detection section.
  • Considering temporary disabling or restricting the draft autosave feature if feasible until a patch is released.
Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-10715. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart