>How to Make an Annoying Virus - << Continous Typing ---------------------------------------------------------- I am sure almost all of you wanted to annoy your friend, brother or sister while he/she is at the computer. You don't need any special skills to advanced degrees for this. Just simple knowledge of VBScript or Batch script and you can do countless tricks! So today I am going to show you how to make a simple annoying virus in notepad using VBScript in notepad. The Script will type a specified message continuously making it very difficult to do some tasks on the computer and will make it impossible to type anything properly. First of all paste the following code into notepad and save with a .vbs extension. ' Continuous Typing Virus ' By TOP WORLD Hackers Dim text, speed, i Set WshShell = CreateObject("WScript.Shell") ' Sepcify the text and speed here text = "Enter your text here..." speed = 120 startTyping() Function startTyping() Do For i = 1 To Len(text) WshShell.SendKeys(Mid(text, i, 1)) WScript.Sleep speed Next Loop End Function After you save the code its time to test it! Don't worry! Its not harmful and will not do any damage. Just open the file and see the magic! To Stop the typing you can open task manager and end the wscript.exe process. You can modify the code to alter the text typed and the speed of the typing. Refer to the comments in the code for this. Kizhan Razak Via TOP WORLD hackers Guran Cosmin-costel LikeLike · · Share · Buffer
Saturday, November 1, 2014
How to Make an Annoying Virus
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment