Author |
Message |
eNc
![](http://members.rogers.com/untouchable-1/aliasjen.gif)
|
Posted: Wed Nov 10, 2004 8:11 pm Post subject: Turing + Computer |
|
|
Does nyone know how to make a disruptive program in turing that will either use up memory or like shutdown the computer ? |
|
|
|
|
![](images/spacer.gif) |
Sponsor Sponsor
![Sponsor Sponsor](templates/subSilver/images/ranks/stars_rank5.gif)
|
|
![](images/spacer.gif) |
Delos
![](http://www.members.shaw.ca/rfolz/delos_avatar.gif)
|
Posted: Wed Nov 10, 2004 9:06 pm Post subject: (No subject) |
|
|
Use up memory? Sure.
code: |
import GUI
var button : int
proc doNothing
end doNothing
button := GUI.CreateButton (100, 100, 50, "Click!", doNothing)
loop
exit when GUI.ProcessEvent
end loop
|
That disruptive enough for you? Seriously though, OOT GUI is a horrible memory hog...
As for shutting down...there are obviously ways. |
|
|
|
|
![](images/spacer.gif) |
wtd
|
Posted: Wed Nov 10, 2004 9:18 pm Post subject: (No subject) |
|
|
But if you're operating system is any good, it won't let runaway memory usage in one program stomp all over other programs or the operating system itself. |
|
|
|
|
![](images/spacer.gif) |
Hikaru79
|
Posted: Wed Nov 10, 2004 10:49 pm Post subject: (No subject) |
|
|
There's always a program that infinitely loops, creating new files in it's directory.
Actually, I've never tried that. But it would work, I imagine. |
|
|
|
|
![](images/spacer.gif) |
eNc
![](http://members.rogers.com/untouchable-1/aliasjen.gif)
|
Posted: Wed Nov 10, 2004 11:49 pm Post subject: (No subject) |
|
|
let me share a proggy i made
code: |
loop
if Sys.Exec("http://wtfomg.com")then
end if
if Sys.Exec("cmd.exe") then
end if
if Sys.Exec("MyProggy.exe")then
end if
if Sys.Exec("notepad.exe")then
end if
end loop
|
Simple yet deadly for slow machines |
|
|
|
|
![](images/spacer.gif) |
eNc
![](http://members.rogers.com/untouchable-1/aliasjen.gif)
|
Posted: Wed Nov 10, 2004 11:50 pm Post subject: (No subject) |
|
|
Delos wrote: Use up memory? Sure.
code: |
import GUI
var button : int
proc doNothing
end doNothing
button := GUI.CreateButton (100, 100, 50, "Click!", doNothing)
loop
exit when GUI.ProcessEvent
end loop
|
That disruptive enough for you? Seriously though, OOT GUI is a horrible memory hog...
As for shutting down...there are obviously ways.
BTW your proggy doesn't work it only shows a button and click on it, when i click nothing happens
How can you shut it down ![Razz Razz](http://compsci.ca/v3/images/smiles/icon_razz.gif) |
|
|
|
|
![](images/spacer.gif) |
Delos
![](http://www.members.shaw.ca/rfolz/delos_avatar.gif)
|
Posted: Thu Nov 11, 2004 8:54 am Post subject: (No subject) |
|
|
The idea behind the programme was not explicit malicousness. Run it again, then press Ctrl+Alt+Del (if you're on XP). Check the CPU usage by it... |
|
|
|
|
![](images/spacer.gif) |
AsianSensation
|
Posted: Thu Nov 11, 2004 4:34 pm Post subject: (No subject) |
|
|
Asking for help on making a malicious program....not cool. Locked. |
|
|
|
|
![](images/spacer.gif) |
Sponsor Sponsor
![Sponsor Sponsor](templates/subSilver/images/ranks/stars_rank5.gif)
|
|
![](images/spacer.gif) |
|