Adversaries may collect data stored in the clipboard from users copying information within or between applications.In Windows, Applications can access clipboard data by using the Windows API.(Citation: MSDN Clipboard) OSX provides a native command,
pbpaste
, to grab clipboard contents.(Citation: Operating with EmPyre)
Add data to clipboard to copy off or execute commands from.
Supported Platforms: Windows
dir | clip
echo "T1115" > %temp%\T1115.txt
clip < %temp%\T1115.txt
del %temp%\T1115.txt >nul 2>&1
Utilize PowerShell to echo a command to clipboard and execute it
Supported Platforms: Windows
echo Get-Process | clip
Get-Clipboard | iex