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

[CC 1.53] sikedLogin [Security with bootup login] V1.0

Started by SiKeDDeMoNMC, 17 June 2013 - 08:20 AM
SiKeDDeMoNMC #1
Posted 17 June 2013 - 10:20 AM
SiKeDTech presents sikedLogin

Login security with two simple programs.
Default Username: admin
Default Password: admin

to change use "edit sikedLogin"
search for user=="admin" or pass=="admin"
change them to how you like.
First program that I made!

If you get a virus,
simply use a floppy with a startup program written on it.
then do edit startup and change everything.

make it say at the least
shell.run("clear")
shell.run("sikedLogin")
Because of this simple but effective way of using another program it makes it simple if you get infected you wont have to reinstall the programs.

Download

wilcomega #2
Posted 19 June 2013 - 01:18 PM
can you pastebin it? it will be downloaded way more than mediafire or other downlaod sites
jesusthekiller #3
Posted 20 June 2013 - 04:23 AM
buttload of sleeps, shell. run("clear"), unsafe code…
TheGamerOfAction #4
Posted 21 June 2013 - 07:43 AM
It's good for your level, but there are a few things you should know:
First, you could use
term.clear()
instead of
shell.run("clear")
Second, don't fake authentication delay, it's just unprofessional.
Third, I could bypass the whole thing by pressing Ctrl + T
And lastly, use pastebin, not mediafire.

P.S, the default account is NOT admin.
TheOddByte #5
Posted 21 June 2013 - 01:33 PM
And here's a function that does about the same as shell.run("clear")


function clear()
   term.clear()
	  term.setCursorPos(1,1)
end


But it's better todo this instead of shell.run("clear")
Also.. I put the file onto pastebin for you

pastebin get Q3i7T7W7 startup
DiabolusNeil #6
Posted 22 June 2013 - 02:26 AM
A bit too simple, but eh… works. I have made another program that looks for a username and password, and doesn't contain a lot of if/then statements.