139 posts
Posted 17 November 2012 - 02:26 PM
ok i made a virus on my friends server and let it run uncontrollably.
I had a copy laying around so I made a
safe self destroying that doesn't spread (so it is no longer malicious.) copy for pranking friends.
its 100% safe it deletes it self and has ctrl+t enabled
pastebin get VmxFdHkS
139 posts
Posted 17 November 2012 - 02:28 PM
that says da mint so it is not inappropriate
389 posts
Location
Norway
Posted 17 November 2012 - 10:34 PM
Pastebin link seems to be broken. So you are technically not following the rules of this section :)/>/>
You don't want to break rules do you? Of course you don't!
1243 posts
Location
Indiana, United States
Posted 17 November 2012 - 11:16 PM
that says da mint so it is not inappropriate
Oh, derpyface.
Cursing is allowed, if not quite encouraged.
139 posts
Posted 18 November 2012 - 04:26 AM
Pastebin link seems to be broken. So you are technically not following the rules of this section :)/>/>
You don't want to break rules do you? Of course you don't!
opps fixed the link forgot to copy the S
139 posts
Posted 07 December 2012 - 02:18 PM
this is now opensource so you can use it as you please.
222 posts
Location
Canada
Posted 07 December 2012 - 08:02 PM
I made my own, WAY simpler too.
It just spits out "No such program" no matter what.
139 posts
Posted 08 December 2012 - 02:03 PM
I made my own, WAY simpler too.
It just spits out "No such program" no matter what.
this version is so complex because it was a virus a long time ago and i just took out the malicious parts and posted.
30 posts
Posted 23 December 2012 - 12:52 PM
Cruor you have to name it yourself
1190 posts
Location
RHIT
Posted 23 December 2012 - 01:02 PM
Open source? There is no such thing as not open source in Lua *facepalm*
222 posts
Location
Canada
Posted 23 December 2012 - 01:10 PM
Open source? There is no such thing as not open source in Lua *facepalm*
71 posts
Posted 23 December 2012 - 01:25 PM
Open source? There is no such thing as not open source in Lua *facepalm*
There's bytecode…
1190 posts
Location
RHIT
Posted 23 December 2012 - 02:14 PM
Open source? There is no such thing as not open source in Lua *facepalm*
There's bytecode…
Which can be "recompiled". Also no bytecode in ComputerCraft so nil point.
997 posts
Location
Wellington, New Zealand
Posted 23 December 2012 - 07:13 PM
Which can be "recompiled". Also no bytecode in ComputerCraft so nil point.
Was it removed? This used to work:
function doStuff() print("Hello world!") end
bytecode = string.dump(doStuff)
print(bytecode) -- prints gibberish
doStuff2 = loadstring(bytecode)
doStuff2() -- prints "Hello world!"
1190 posts
Location
RHIT
Posted 23 December 2012 - 08:01 PM
Which can be "recompiled". Also no bytecode in ComputerCraft so nil point.
Was it removed? This used to work:
function doStuff() print("Hello world!") end
bytecode = string.dump(doStuff)
print(bytecode) -- prints gibberish
doStuff2 = loadstring(bytecode)
doStuff2() -- prints "Hello world!"
… Hmm. I'm not sure what I was thinking there when I posted that xD For some reason I thought bytecode was part of the lua debug library.