CVE-2024-24554

Bludit - Insecure Token Generation

Description

Bludit uses predictable methods in combination with the MD5 hashing algorithm to generate sensitive tokens such as the API token and the user token. This allows attackers to authenticate against the Bludit API.

Remediation

Solution:

  • Generating secure API and user auth tokens in PHP involves creating unique and cryptographically secure strings that can be used as tokens for authentication purposes. The following code snippet is a basic example of how to generate secure API tokens in PHP: ```php function generateApiToken($length = 32) {     $token = bin2hex(random_bytes($length));     return $token; } ```

Workaround:

  • Disable API.

Category

6.0
CVSS
Severity: Medium
CVSS 4.0 •
EPSS 0.09%
Affected: Bludit Bludit
Published at:
Updated at:

References

Frequently Asked Questions

What is the severity of CVE-2024-24554?
CVE-2024-24554 has been scored as a medium severity vulnerability.
How to fix CVE-2024-24554?
To fix CVE-2024-24554: Generating secure API and user auth tokens in PHP involves creating unique and cryptographically secure strings that can be used as tokens for authentication purposes. The following code snippet is a basic example of how to generate secure API tokens in PHP: ```php function generateApiToken($length = 32) {     $token = bin2hex(random_bytes($length));     return $token; } ```
Is CVE-2024-24554 being actively exploited in the wild?
As for now, there are no information to confirm that CVE-2024-24554 is being actively exploited. According to its EPSS score, there is a ~0% probability that this vulnerability will be exploited by malicious actors in the next 30 days.
What software or system is affected by CVE-2024-24554?
CVE-2024-24554 affects Bludit Bludit.
This platform uses data from the NIST NVD, MITRE CVE, MITRE CWE, First.org and CISA KEV but is not endorsed or certified by these entities. CVE is a registred trademark of the MITRE Corporation and the authoritative source of CVE content is MITRE's CVE web site. CWE is a registred trademark of the MITRE Corporation and the authoritative source of CWE content is MITRE's CWE web site.
© 2025 Under My Watch. All Rights Reserved.