🔐 CVE Alert

CVE-2026-95834

UNKNOWN 0.0

Use after free in the kitty drag and drop protocol when a drag source item is aborted mid-transfer

CVSS Score
0.0
EPSS Score
0.0%
EPSS Percentile
0th

Use After Free in the drag source path of the drag and drop protocol in kitty from 0.47.0 before 0.49.0 allows a program writing to the terminal to cause the terminal to read from and write to freed heap memory, because drag_remote_file_data() in kitty/dnd.c holds a DragRemoteItem pointer into an array it does not own, calls toplevel_data_for_drag() or subdir_data_for_drag(), and then continues to use that pointer. Those helpers, and add_payload() and populate_dir_entries() which they call, report errors through the abrt() macro, which expands to cancel_drag() followed by a plain return, and cancel_drag() calls drag_free_offer(), which frees the array the pointer refers to. The helpers return void, so the caller receives no indication that the teardown happened, and proceeds to call all_children_complete() on the freed pointer, which dereferences it, and then to write through it. That dereference is guarded by a local flag that is set when the request carries no payload and announces no further data, which is the same condition that selects the finalisation block of add_payload(), so the error paths in that block reach it: a create that fails because an entry of the same name already exists, because the client may declare two entries with one name and the create operations use O_CREAT with O_EXCL and symlinkat(), a mkdirat() failure other than EEXIST, and the directory entry allocation paths. Both branches reach it. In the top level branch the caller's pointer is never cleared, so clearing the owning structure's own pointers during teardown does not help. In the sub directory branch subdir_data_for_drag() sets the caller's pointer to NULL on entry and assigns it only after its own last error path, so its own aborts leave the caller with NULL and are stopped by a null check, but it then calls add_payload() with that pointer set, and an abort there leaves the caller holding a freed child node inside the item tree, which drag_free_offer() frees by recursion. This results in undefined behaviour in the terminal process, reachable from the byte stream of any program running in the window.

CWE CWE-416
Vendor kovid goyal
Product kitty
Published Sep 25, 2026
Last Updated Sep 25, 2026
Stay Ahead of the Next One

Get instant alerts for kovid goyal kitty

Be the first to know when new unknown vulnerabilities affecting kovid goyal kitty are published — delivered to Slack, Telegram or Discord.

Get Free Alerts → Free · No credit card · 60 sec setup

Affected Versions

Kovid Goyal / kitty
0.47.0 < 0.49.0

References

NVD ↗ CVE.org ↗ EPSS Data ↗
github.com: https://github.com/kovidgoyal/kitty/commit/b54bfbb4f85f992edca9b04f5c0c2612454eec23 github.com: https://github.com/kovidgoyal/kitty/releases/tag/v0.49.0 secur0.com: https://secur0.com/en/cna/cve-list/cve-2026-95834-kitty-dnd-use-after-free

Credits

Gabriel Machado Tavares Cristian Fernández Cornejo Xoán M. Otero Jorge Secur0 CNA Kovid Goyal