Last active
December 27, 2020 19:55
-
-
Save Clevero/19fdabf7e0fa4b4b6036a65b44cb2d6c to your computer and use it in GitHub Desktop.
This is a powershell script that is downloaded via a Word Macro and executed. This was used in a proof of concept
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| param([string]$title) | |
| "Called with parameter: $title" | Write-Output | |
| New-Item new_file.txt -ItemType file | |
| echo "You have been hacked" >> .\new_file.txt | |
| echo "Please call your IT department for more information" >> .\new_file.txt | |
| start new_file.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment