Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: ction clearScreen(pos1,pos2) term.clear() term.setCursorPos(pos1,pos2) end clearScreen(1,1) term.setTextColor(16) print("You're currently using Jeff's Pc, to enter you must enter your password!") write("Password: ") local input = read("*") local password = "Secret" if input == password then clearScreen(1,1) term.setTextColor(16384) print("Hello, authorized user.") else clearScreen(1,1) print("Unauthorized user detected. Access Denied.") sleep(3) os.reboot() end os.run({}, […]
↧