How to make a custom AutoRun

1 message Options
Embed this post
Permalink
mase

How to make a custom AutoRun

Reply Threaded More More options
Print post
Permalink
I'll teach you how to make your own custom autorun for your USB flash drive!
Before we start let's ask a few questions!
-How can I use this?
To start up a program as soon as you plug in your usb
-How does this help us with hacking?
If you have a hacking software in your USB, and you have an autorun..
Hacking software+Autorun=fast attacking!
-What do i need to make this Autorun?
Well all we will be needed is:

   1. USB
   2. Notepad
   3. Computer
   4. a Brain(optional)
   5. Hacking software (optional)

Thats about it!
-Is there anything else we could do with an autorun?
yes we can make it so you can go to a webpage, open any program or file, also you can just use this auto run open your usb, but have your own icon at the autorun!
Let's get going!
First with Notepad create a file called autorun.inf and save it to the root (the front page of your usb, not a folder) of your USB flash drive of choice. In the autorun file put this:
Code:

[autorun]
icon=
open=
action=
shell\open\command=

Now as you can tell It has nothing in it to open.
So we need to make an icon, Simply get any image you want, save it as a (iconname).ico and your done with that, Save the .ico to the Root of the usb. Then we need to open a .bat file.
here's what you need to put in the .bat file.
Code:

@echo off
cls
echo Run Autorun Run!
pause > nul

Save it to the root again to the usb.
Now that we have all the files we need, let's fill them in:
Code:

[autorun]
icon=file.ico (this will be what ever you name it)
open=file.bat (this will be what ever you name your .bat)
action=
shell\open\command=file.bat (this is the same as the .bat file above.

Action is any text you want to show up when you plug in your usb and the autorun message comes up! Now here we have just an open program idea!
But if you want to make it so it open a webpage, then
change the shell\open\command=, to
Code:

shellexecute=http://www.webpagehere.com