-
-
Notifications
You must be signed in to change notification settings - Fork 223
macos to handle more clipboard formats, converting them on the fly #273
Copy link
Copy link
Closed
Description
At the moment, we simply drop these types of clipboard data:
if type in ("WINDOW", "PIXMAP", "BITMAP", "DRAWABLE", "PIXEL", "COLORMAP"):
debug("skipping clipboard data of type: %s, format=%s, len(data)=%s", dtype, dformat, len(data))
return None, None
We could try to handle some of those, and provide them in multiple formats since we generally have PIL available for converting between formats.
From a security POV, it probably makes sense to always convert formats so that we can "guarantee" that the data we send over the wire is not malicious?
Think: an application providing a JPEG based buffer overflow via the clipboard: worst case scenario is that the xpra server crashes parsing it or maybe it gets compromised, but the client machine will not receive the malicious content directly.
But then again, if you can exploit the server, you can then inject the bad content in there.. I guess it's still a first line of defense.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels