CVE-2024-51478·PHP vulnerability
YesWiki is a wiki system written in PHP. Prior to 4.4.5, the use of a weak cryptographic algorithm and a hard-coded salt to hash the password reset key allows it to be recovered and used to reset the password of any account. This issue is fixed in 4.4.5.
- Severity
- critical
- Software
- PHP
- Fixed in
- 4.4.5
- Published
- 2024-10-31
Affected versions
Until: 4.4.5
Fixed in: 4.4.5
How to fix this CVE
YesWiki installations running versions prior to 4.4.5 are vulnerable to password reset key recovery due to weak cryptographic hashing with a hardcoded salt. Immediately upgrade YesWiki to version 4.4.5 or later to replace the vulnerable password reset mechanism with a cryptographically secure implementation. After upgrading, invalidate all existing password reset tokens and require administrators to issue fresh password resets for affected users.
sudo dnf update phpDefensia detects this vulnerability
What an exploitation attempt looks like
Sample log line indicative of exploitation attempts:
POST /wakka.php?wiki=PasswordReset with repeated token generation attempts or GET requests containing base64-encoded predictable reset tokens matching the pattern ^[a-f0-9]{32}$ derived from weak hash algorithmsWAF mitigation (if patching is not yet possible)
Add this rule to your WAF to block exploitation attempts while you schedule the patch.
Implement rate limiting on password reset endpoints (/wakka.php?wiki=PasswordReset or similar) to block multiple reset attempts from the same IP within a short timeframe. Add WAF rules to detect and block requests containing suspicious password reset tokens with entropy patterns inconsistent with cryptographic randomness.How to check if you are affected
- Step 1: Check YesWiki version by inspecting the release file: grep -r "VERSION" /path/to/yeswiki/includes/ | grep -i version
- Step 2: Search for password reset tokens in the YesWiki database: SELECT * FROM yeswiki_pages WHERE tag LIKE '%reset%' OR content LIKE '%token%' LIMIT 10;
- Step 3: Review web server access logs for unusual password reset requests: grep -i "reset\|pwd\|password" /var/log/apache2/access.log | grep POST
- Step 4: After upgrading to 4.4.5, verify the new cryptographic implementation is active by checking the commit hash in the installation: cd /path/to/yeswiki && git log --oneline | grep -i 'password\|hash\|crypto' | head -5
FAQ
What is CVE-2024-51478?
CVE-2024-51478 is a critical vulnerability in YesWiki that exploits weak password reset token generation. Attackers can predict and forge password reset keys due to the use of a hardcoded salt combined with weak hashing, allowing unauthorized account takeovers without requiring the original password.
Is CVE-2024-51478 being actively exploited?
No, CVE-2024-51478 is not currently listed on the CISA Known Exploited Vulnerabilities catalog and no public exploits are available. However, the attack is trivial to execute once understood, making proactive patching critical.
What versions of YesWiki are affected by CVE-2024-51478?
All YesWiki versions prior to 4.4.5 are affected. Version 4.4.5 and later contain the security fix and should be deployed immediately.
How do I check if my server is vulnerable to CVE-2024-51478?
Determine your YesWiki version using: grep -r 'YESWIKI_VERSION' /path/to/yeswiki/includes/ or by checking the About page in the web interface. If the version is below 4.4.5, your installation is vulnerable.
Does Defensia detect CVE-2024-51478?
Yes — Defensia's CVE advisory scanner compares installed package versions against the NVD database. If YesWiki is installed on a monitored server, CVE-2024-51478 will appear in your dashboard with remediation steps.
Related PHP CVEs
References
Track CVEs across your fleet automatically
Defensia scans your Linux servers and tells you exactly which ones are running vulnerable versions — including CVE-2024-51478. Free for 1 server.
Get started free