But mom!
December 8, 2010 9:03 AM Subscribe
What does this program/script do, and presuming a locked down environment like a grade school, could it be used maliciously?
I can make an educated guess what this does, but I would like to know for sure.
loop:
Set WshShell = CreateObject("WScript.Shell")
a = InputBox("What is your name?", "NAME", "Enter your name here:")
b = InputBox("Who would you like to send a msg to?", "USERNAME", "Enter Username Here:")
c = InputBox("What is your msg you want to send?", "MSG", "Enter Msg Here:")
Dim objFSO
Dim objStream
Dim objstrLine
Set objFSO = createobject("scripting.filesystemobject")
Set objStream = objFSO.CreateTextFile("C:\Users\Eddy\Desktop\RemoteCmd.bat", True)
objStream.Writeline("msg * " & c )
x = InputBox("Would you like to send another msg?", "REPEAT", "Yes or No:")
if x == "Yes" then
goto loop
else
exit
A friend of mine has a son that has gotten in trouble on his school's computers. He created a gmail account to bypass his parent's
no email accounts without the parent's knowing the password rule. She found out about this, and the above program was in an email exchange with another student. The email read like they were excited about getting away with something. She'd like to know what.
Long story short she wants to know what the above does before busting the kid's chops.
posted by cjorgensen to computers & internet (29 answers total) 2 users marked this as a favorite
posted by atrazine at 9:11 AM on December 8, 2010