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
| msfvenom -l payloads |grep -i windows | |
| cmd/windows/adduser Create a new user and add them to local administration group. Note: The specified password is checked for common complexity requirements to prevent the target machine rejecting the user for failing to meet policy requirements. Complexity check: 8-14 chars (1 UPPER, 1 lower, 1 digit/special) | |
| cmd/windows/bind_lua Listen for a connection and spawn a command shell via Lua | |
| cmd/windows/bind_perl Listen for a connection and spawn a command shell via perl (persistent) | |
| cmd/windows/bind_perl_ipv6 Listen for a connection and spawn a command shell via perl (persistent) | |
| cmd/windows/bind_ruby Continually listen for a connection and spawn a command shell via Ruby | |
| cmd/windows/download_eval_vbs Downloads a file from an HTTP(S) URL and executes it as a vbs script. Use it to stage |
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
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 3.2//EN"> | |
| <html> | |
| <head> | |
| <meta name="generator" content= | |
| "HTML Tidy for Linux (vers 25 March 2009), see www.w3.org"> | |
| <title></title> | |
| </head> | |
| <body> | |
| <script> |
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
| //Script to Copy shortcuts to Startup Folder | |
| [System.Reflection.Assembly]::LoadWithPartialName("System.windows.forms") | Out-Null | |
| $OpenFileDialog = New-Object System.Windows.Forms.OpenFileDialog | |
| $OpenFileDialog.ShowDialog()|Out-Null | |
| $File = $OpenFileDialog.filename | |
| $startup = [environment]::getfolderpath("Startup") | |
| Copy-Item $File $startup |