Adversaries may collect data stored in the Windows clipboard from users copying information within or between applications.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 clip < readme.txt
<br/>
<br/>
## Atomic Test #2 - PowerShell
Utilize PowerShell to echo a command to clipboard and execute it
**Supported Platforms:** Windows
#### Run it with `powershell`! ```
echo Get-Process | clip
Get-Clipboard | iex