Skip to content

Cross-Site Request Forgery in CodeChecker API

High severity GitHub Reviewed Published Jan 21, 2025 in Ericsson/codechecker

Package

pip codechecker (pip)

Affected versions

< 6.24.5

Patched versions

6.24.5

Description

Summary

Cross-site request forgery allows an unauthenticated attacker to hijack the authentication of a logged in user, and use the web API with the same permissions.

Details

Security attributes like HttpOnly and SameSite are missing from the session cookie, allowing its use from XHR requests and form submissions.
The CodeChecker API endpoints only require the session cookie, they do not require a CSRF token, and missing HTTP headers allow the form submission to succeed (but not XHR). This means that the attacker needs to know the ID of products to edit or delete them, but it does not need knowledge to create new products with the SQLite backend.

PoC

With a superuser logged into CodeChecker.

<html><body>
    <form action="https://codechecker.example.com/v6.58/Products" method="POST" enctype="text/plain">
        <input type="text" name='[1,"getProducts",1,1,{}]' value=''>
    </form>
    <script>document.forms[0].submit()</script>
</body></html>

Or the same form attack on any of the applicable endpoints.

Impact

The vulnerability allows an attacker to make requests to CodeChecker as the currently logged in user, including but not limited to adding, removing or editing products. The attacker needs to know the ID of the available products to modify or delete them. The attacker cannot directly exfiltrate data from CodeChecker, due to being limited to form-based CSRF.

References

@bruntib bruntib published to Ericsson/codechecker Jan 21, 2025
Published by the National Vulnerability Database Jan 21, 2025
Published to the GitHub Advisory Database Jan 21, 2025
Reviewed Jan 21, 2025

Severity

High

CVSS overall score

This score calculates overall vulnerability severity from 0 to 10 and is based on the Common Vulnerability Scoring System (CVSS).
/ 10

CVSS v3 base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
None
User interaction
Required
Scope
Changed
Confidentiality
Low
Integrity
High
Availability
None

CVSS v3 base metrics

Attack vector: More severe the more the remote (logically and physically) an attacker can be in order to exploit the vulnerability.
Attack complexity: More severe for the least complex attacks.
Privileges required: More severe if no privileges are required.
User interaction: More severe when no user interaction is required.
Scope: More severe when a scope change occurs, e.g. one vulnerable component impacts resources in components beyond its security scope.
Confidentiality: More severe when loss of data confidentiality is highest, measuring the level of data access available to an unauthorized user.
Integrity: More severe when loss of data integrity is the highest, measuring the consequence of data modification possible by an unauthorized user.
Availability: More severe when the loss of impacted component availability is highest.
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:H/A:N

Weaknesses

CVE ID

CVE-2024-53829

GHSA ID

GHSA-f8c8-4pm7-w885

Source code

Credits

Loading Checking history
See something to contribute? Suggest improvements for this vulnerability.