Data is stored in memory and can be read by other applications with Clipboard Viewers or Clipboard Listeners :
Monitoring Clipboard Contents
Data copied into windows clipboard, does it get saved to any local temporary file or cache from data security perspective?
We are copying text data across applications in windows using clipboard with ctrl-c and ctrl-v.
The data may be sensitive.
We want to understand if the data on windows clipboard, does it get saved to a local temporary file or cache file anywhere in the system which may be accessible to someone else?
Thanks
2 answers
Sort by: Most helpful
-
Castorix31 84,546 Reputation points
2021-02-11T13:15:08.313+00:00 -
Dale Kudusi 3,236 Reputation points
2021-02-12T05:54:56.733+00:00 Hi,
the clipboard is not stored. It lives in memory exclusively.
A memory object on the clipboard can be in any data format, called a clipboard format. Each format is identified by an unsigned integer value. For standard (predefined) clipboard formats, this value is a constant defined in Winuser.h; for registered clipboard formats, it is the return value of the RegisterClipboardFormat function.
Reference: About the ClipboardBest regards.
**
If the Answer is helpful, please click "Accept Answer" and upvote it.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.