Security Vulnerability Report
中文
CVE-2026-33847 CVSS 7.8 HIGH

CVE-2026-33847

Published: 2026-03-24 06:16:22
Last Modified: 2026-04-20 20:19:54

Description

Improper Restriction of Operations within the Bounds of a Memory Buffer vulnerability in linkingvision rapidvms.This issue affects rapidvms: before PR#96.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:linkingvision:rapidvms:-:*:*:*:*:*:*:* - VULNERABLE
LinkingVision RapidVMS PR#96之前版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-33847 (Conceptual) # This script simulates a buffer overflow scenario. import sys def trigger_vulnerability(payload): """ Simulates the vulnerable buffer copy operation in RapidVMS. The vulnerability occurs due to improper restriction of memory buffer bounds. """ # Fixed size buffer allocation (simulating the vulnerable code) buffer_size = 256 buffer = ['\x00'] * buffer_size try: # VULNERABILITY: Copying data without checking length against buffer_size for i in range(len(payload)): buffer[i] = payload[i] print(f"Successfully wrote {len(payload)} bytes to buffer.") except IndexError: print("Buffer overflow detected!") if __name__ == "__main__": # Creating a payload larger than the buffer to trigger the overflow # In a real exploit, this payload would contain shellcode or ROP gadgets. malicious_payload = "A" * 300 print(f"[+] Triggering CVE-2026-33847 with payload size: {len(malicious_payload)}") trigger_vulnerability(malicious_payload) print("[+] Exploit attempt finished.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-33847", "sourceIdentifier": "[email protected]", "published": "2026-03-24T06:16:21.670", "lastModified": "2026-04-20T20:19:54.100", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Restriction of Operations within the Bounds of a Memory Buffer vulnerability in linkingvision rapidvms.This issue affects rapidvms: before PR#96."}, {"lang": "es", "value": "Restricción Inapropiada de Operaciones dentro de los Límites de un Búfer de Memoria vulnerabilidad en linkingvision rapidvms. Este problema afecta a rapidvms: antes de PR#96."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-119"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:linkingvision:rapidvms:-:*:*:*:*:*:*:*", "matchCriteriaId": "66ED8209-0138-4730-B63D-839D8B5DAB01"}]}]}], "references": [{"url": "https://github.com/linkingvision/rapidvms/pull/98", "source": "[email protected]", "tags": ["Issue Tracking"]}]}}