Payloads
WSH
'Can be executed with wscript.exe script.vbs
Dim Message
Message = "Hello World"
MsgBox MessageSet Shell = Wscript.CreateObject("Wscript.Shell")
Shell.run("C:\Windows\System32\cmd.exe" & Wscript.ScriptFullName),0,True
'Executing the above with wscript.exe payload.exe will run cmd.exe in a new window
'Can also be run with cscript.exeHTA
VBA
PSH
Last updated