Skip to main content

Explain Different Causes of Spread of Computer Virus

A computer virus can be spread from one computer to another, due to the following reasons:

       1. Portable Storage Media

v>
The storage media that is used to transfer files from one computer to another, is one of the biggest reason to spread virus in different computers. For example, in near past, people used foloppy disks to copy files from one computer to another. If the files being copied are infected with virus then virus will also be copied on the second computer. Similarly, computer virus can also be transfeerred from one computer to another, if we use USB flash drives, Zip Disks, Portable Hard Disks or Optical disks, different types of  Storage Cards etc. for file copy process.

      2. Internet

Nowadays, most viruses are spread through the internet. The internet has made viruses spread in a much quicker way. Computer viruses can attache to different files, making them infected. Therefore,  if your PC is infected with a virus then sharing of  infected files with other people, will transfer the virus, too.  There are two main sources of virus on internet as follows:

      a) E-Mail Attachements


Computer Virus may be spread through Email. Normally, an Email contains some files with it called Email Attachements. These attached files may be infected with computer viruses. So, if some one opens such Email and downloads/ opens the infected files, the computer may be infected with virus. Some Email viruses may send virus automatically to all email addresses saved in the email address book.

     b) Insecure Websites


There are thousands of rogue websites on the web that can infect computer with viruses. When you visit a rogue website, it will offer some material to download like a game, a screen saver or a software. The computer virus is transferred to the computer when the material is downloaded. This virus file when openned will be active and may destroy data, files  or software.

      3. Computer Networks


A Computer Virus can spread if the user connects to a infected computer network. Let a NetCafe is running a Local Area Network to share Interenet Connection and files on Disk Storage. Now if a user inserts an infected  flash USB drive in a computer system, the virus may be transferred to that comp[uter. Since the infected computer is linked with other computers in network, this virus may transfer to all computers while copying infected files.

     4.  Infected Pirated Software


An illegal copy of a software is called Pirated Software. Pirated software is not a licensed software. There are millions of free software available on CDs and Internet that are actually Pirated software.  These infected pirated software may transfer virus in the computer system if installed. There are some companies that intentionally copy virus in pirated software. So that if people buy and install unlicensed software, the virus will be activated and may harm the computer system.

Example of Infected Pirated Software Virus:

On 26th of April, 1999 a virus Called CIH was activated in computer systems using Pirated Version of Windows 95 and Windows 98. The virus was already included in Pirated software CDs. CIH used the time bomb logic to be activated automatically when the computer system's date is 26th April.
The virus was created by Chen Ing-hau, (hence the name CIH Virus)who was a student at Tatung University in Taiwan. 60 million computers were believed to be infected by the virus internationally, resulting in an estimated $1 billion US dollars in commercial damages.
CIH's dual payload was delivered for the first time on April 26, 1999, with most of the damage occurring in Asia. CIH filled the first 1024 KB of the host's boot drive with zeros and then attacked certain types of BIOS. Both of these payloads served to render the host computer inoperable, and for most ordinary users the virus essentially destroyed the PC. Technically, however, it was possible to replace the BIOS chip, and methods for recovering hard disk data emerged later.
                 Suggested Related Readings
Virus and Antivirus: Problem and Solution
  1. Top 7 Best Free Antivirus 2013 Research
  2. AVAST The Best Free Antivirus
  3. Managing Antivirus Software Properly
  4. Pakistanis Invented First PC Virus in 1986
  5. Explain Different Causes of Spread of Computer Virus
  6. Free AVG Antivirus Reliable Protection
  7. Avira Antivir Free Good Antivirus Software
  8. Download PANDA Cloud Antivirus Free
  9. Ad-Aware Free Antivirus Plus Anti Spyware
  10. Microsoft Security Essentials Free Antivirus
  11. Bitdefender Antivirus Free Edition
  12. Comodo Free Antivirus with Firewall

Comments

Popular posts from this blog

Explain different types of storage devices

Topic: Explain different types of storage devices in Computer systems Storage Devices Storage devices are used to store data and instructions permanently. Storage devices are also called secondary storage devices / backing storage devices / external storage devices or auxiliary storage devices. Examples of storage devices include Hard Disk, CD and DVD etc. Why Secondary Storage Devices are Used? Secondary storage devices are used because: Primary memory(RAM) is volatile and temporary. When computer is switched off, all data in ram is erased. Storage devices can store large amounts of data and instructions permanently whereas Primary memory has less capacity of storing data. Types Of Storage Devices There are three main types of storage devices:  Magnetic Tape   Magnetic Disk   Optical Disk   Flash Memory storage devices 1. Magnetic Tape Magnetic tape is the oldest storage device. It is made of plastic coated with magnetic material. Data is stored on mag

Important Objective Type Questions 101-155

MMC stands for multimedia card. SD stands for secure digital card. System Bus  is used to connect main components of a computer such as cpu and main memory. A Port is an interface or a point of attachments. POS stands for Point Of Sale terminal. ATM stands for Automated Teller Machine. PIN stands for Personal identification number. Kbps stands for kilobits per second. Mbps stands for megabits per second. A port that transmits one bit at a time is called Serial Port. A type of port that transmits many bits at a time is called Parallel Port. LPT stands for Line Printer. Examples of system software are Operating System, Utility Programs and Device Drivers. Examples of operating systems are DOS, Windows, Unix and Linux. Examples of Utility programs are File Manager, Image Viewer, Disk Scanner and File Compressor. Software used to detect and remove viruses is called Antivirus . Examples of antivirus programs are Mcaffee, Avast,

Convert Centimeters to Inches Python Programming | Python Program Conver...

YouTube Video Tutorial How to write a Python program to convert centimetres to inches Formula to convert centimetres to inches   Explanation of this Python Program This Python program prompts the user to enter a height in inches, converts it to centimeters, and then prints the converted value. It uses the conversion factor of 2.54 to perform the conversion and rounds the result to two decimal places before displaying it to the user. Here's an explanation of the provided Python program line by line: python inches = float ( input ( 'Enter the Height in inches to convert into centimeters:' )) This line prompts the user to enter a height in inches and assigns the entered value to the variable inches . The input() function is used to receive input from the user, and float() is used to convert the input into a floating-point number. python centimeters = inches * 2.54 This line calculates the equivalent value in centimeters by multiplying the inches variable by the conver