- Dec 23, 2014
- 8,510
PowerShell scripts blocked when executing, cannot be also edited via powershell_ise.exe or notepad.exe - both execution and edition is blocked by NVTOSA 1.1. But, VBS scripts blocked when executing, can be edited by notepad.exe.
Tested PowerShell script:
Tested VBS script:
Tested PowerShell script:
Code:
$mpX = New-Object System.Net.WebClient; $mpX.Headers['User-Agent'] = 'ff-user'; $mpX.DownloadFile('http://downloads.novirusthanks.org/files/osarmor_setup.exe', $env:USERPROFILE + '\Downloads\osarmor_setup.exe'); (New-Object -com Shell.Application).ShellExecute($env:USERPROFILE + '\Downloads\osarmor_setup.exe',"")
Code:
Set WshShell = CreateObject("WScript.Shell")[/COLOR][/LEFT]
[COLOR=rgb(29, 33, 41)]
[LEFT]WshShell.Run("c:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -noprofile -command (New-Object System.Net.WebClient).DownloadFile('https://kcsoftwares.com/files/sumo_lite.exe',$env:USERPROFILE + '\Downloads\sumo_lite.exe')")
WScript.Sleep(10000)
path = WshShell.ExpandEnvironmentStrings("%userprofile%\\Downloads\\sumo_lite.exe")
WshShell.Run(path)
WScript.Quit
Last edited: