This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Coolymike's profile picture

Multiple shells

Started by Coolymike, 10 August 2016 - 03:04 PM
Coolymike #1
Posted 10 August 2016 - 05:04 PM
I need to have a program that allows a hidden second Shell to be running at the same time als the normal startup. Im asking this because i was making a hack where you can controll someones computer. I already have the hack part i just need to have 2 shells running so the hacked user doesnt notice it happening. Please help me.
DoganLark #2
Posted 10 August 2016 - 06:39 PM
Please remember that Viruses are not allowed on the forums.(I'm helping you here, just publish it as a remote shell ������) But if you want to execute code in the background you could put this in startup:


parallels.waitForAny(function()
  --remote control
end,
function()
  shell.run("shell")
end)
KingofGamesYami #3
Posted 10 August 2016 - 06:41 PM
Speaking of a remote shell
Coolymike #4
Posted 11 August 2016 - 05:24 PM
Please remember that Viruses are not allowed on the forums.(I'm helping you here, just publish it as a remote shell ������) But if you want to execute code in the background you could put this in startup:

parallels.waitForAny(function()
--remote control
end,
function()
shell.run("shell")
end)
Thans im now gonna try.
And are virusses really banned here?
I just made em for Fun and to troll my friend

Please remember that Viruses are not allowed on the forums.(I'm helping you here, just publish it as a remote shell ������) But if you want to execute code in the background you could put this in startup:

parallels.waitForAny(function()
--remote control
end,
function()
shell.run("shell")
end)
It doesnt work. :(/>/>