←  Ask a Pro

ComputerCraft | Programmable Computers for Minecraft

»

Multiple shells

Coolymike's Photo Coolymike 10 Aug 2016

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.
Quote

DoganLark's Photo DoganLark 10 Aug 2016

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)
Quote

KingofGamesYami's Photo KingofGamesYami 10 Aug 2016

Speaking of a remote shell...
Quote

Coolymike's Photo Coolymike 11 Aug 2016

 DoganLark, on 10 August 2016 - 05:39 PM, said:

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

 DoganLark, on 10 August 2016 - 05:39 PM, said:

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. :(/>
Quote