Advertisement
Dragon53535

Username and password setup

Oct 4th, 2013
587
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 16.33 KB | None | 0 0
  1. local doorside = "right" --Change this to the side your door is on
  2. local oldPull = os.pullEvent;
  3. os.pullEvent=os.pullEventRaw;
  4. local phil = {}
  5. local MOD = 2^32
  6. local MODM = MOD-1
  7.  
  8. local function memoize(f)
  9.         local mt = {}
  10.         local t = setmetatable({}, mt)
  11.         function mt:__index(k)
  12.                 local v = f(k)
  13.                 t[k] = v
  14.                 return v
  15.         end
  16.         return t
  17. end
  18.  
  19. local function make_bitop_uncached(t, m)
  20.         local function bitop(a, b)
  21.                 local res,p = 0,1
  22.                 while a ~= 0 and b ~= 0 do
  23.                         local am, bm = a % m, b % m
  24.                         res = res + t[am][bm] * p
  25.                         a = (a - am) / m
  26.                         b = (b - bm) / m
  27.                         p = p*m
  28.                 end
  29.                 res = res + (a + b) * p
  30.                 return res
  31.         end
  32.         return bitop
  33. end
  34.  
  35. local function make_bitop(t)
  36.         local op1 = make_bitop_uncached(t,2^1)
  37.         local op2 = memoize(function(a) return memoize(function(b) return op1(a, b) end) end)
  38.         return make_bitop_uncached(op2, 2 ^ (t.n or 1))
  39. end
  40.  
  41. local bxor1 = make_bitop({[0] = {[0] = 0,[1] = 1}, [1] = {[0] = 1, [1] = 0}, n = 4})
  42.  
  43. local function bxor(a, b, c, ...)
  44.         local z = nil
  45.         if b then
  46.                 a = a % MOD
  47.                 b = b % MOD
  48.                 z = bxor1(a, b)
  49.                 if c then z = bxor(z, c, ...) end
  50.                 return z
  51.         elseif a then return a % MOD
  52.         else return 0 end
  53. end
  54.  
  55. local function band(a, b, c, ...)
  56.         local z
  57.         if b then
  58.                 a = a % MOD
  59.                 b = b % MOD
  60.                 z = ((a + b) - bxor1(a,b)) / 2
  61.                 if c then z = bit32_band(z, c, ...) end
  62.                 return z
  63.         elseif a then return a % MOD
  64.         else return MODM end
  65. end
  66.  
  67. local function bnot(x) return (-1 - x) % MOD end
  68.  
  69. local function rshift1(a, disp)
  70.         if disp < 0 then return lshift(a,-disp) end
  71.         return math.floor(a % 2 ^ 32 / 2 ^ disp)
  72. end
  73.  
  74. local function rshift(x, disp)
  75.         if disp > 31 or disp < -31 then return 0 end
  76.         return rshift1(x % MOD, disp)
  77. end
  78.  
  79. local function lshift(a, disp)
  80.         if disp < 0 then return rshift(a,-disp) end
  81.         return (a * 2 ^ disp) % 2 ^ 32
  82. end
  83.  
  84. local function rrotate(x, disp)
  85.     x = x % MOD
  86.     disp = disp % 32
  87.     local low = band(x, 2 ^ disp - 1)
  88.     return rshift(x, disp) + lshift(low, 32 - disp)
  89. end
  90.  
  91. local k = {
  92.         0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5,
  93.         0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
  94.         0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
  95.         0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
  96.         0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc,
  97.         0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  98.         0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7,
  99.         0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
  100.         0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
  101.         0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
  102.         0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3,
  103.         0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  104.         0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5,
  105.         0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
  106.         0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
  107.         0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2,
  108. }
  109.  
  110. local function str2hexa(s)
  111.         return (string.gsub(s, ".", function(c) return string.format("%02x", string.byte(c)) end))
  112. end
  113.  
  114. local function num2s(l, n)
  115.         local s = ""
  116.         for i = 1, n do
  117.                 local rem = l % 256
  118.                 s = string.char(rem) .. s
  119.                 l = (l - rem) / 256
  120.         end
  121.         return s
  122. end
  123.  
  124. local function s232num(s, i)
  125.         local n = 0
  126.         for i = i, i + 3 do n = n*256 + string.byte(s, i) end
  127.         return n
  128. end
  129.  
  130. local function preproc(msg, len)
  131.         local extra = 64 - ((len + 9) % 64)
  132.         len = num2s(8 * len, 8)
  133.         msg = msg .. "\128" .. string.rep("\0", extra) .. len
  134.         assert(#msg % 64 == 0)
  135.         return msg
  136. end
  137.  
  138. local function initH256(H)
  139.         H[1] = 0x6a09e667
  140.         H[2] = 0xbb67ae85
  141.         H[3] = 0x3c6ef372
  142.         H[4] = 0xa54ff53a
  143.         H[5] = 0x510e527f
  144.         H[6] = 0x9b05688c
  145.         H[7] = 0x1f83d9ab
  146.         H[8] = 0x5be0cd19
  147.         return H
  148. end
  149.  
  150. local function digestblock(msg, i, H)
  151.         local w = {}
  152.         for j = 1, 16 do w[j] = s232num(msg, i + (j - 1)*4) end
  153.         for j = 17, 64 do
  154.                 local v = w[j - 15]
  155.                 local s0 = bxor(rrotate(v, 7), rrotate(v, 18), rshift(v, 3))
  156.                 v = w[j - 2]
  157.                 w[j] = w[j - 16] + s0 + w[j - 7] + bxor(rrotate(v, 17), rrotate(v, 19), rshift(v, 10))
  158.         end
  159.  
  160.         local a, b, c, d, e, f, g, h = H[1], H[2], H[3], H[4], H[5], H[6], H[7], H[8]
  161.         for i = 1, 64 do
  162.                 local s0 = bxor(rrotate(a, 2), rrotate(a, 13), rrotate(a, 22))
  163.                 local maj = bxor(band(a, b), band(a, c), band(b, c))
  164.                 local t2 = s0 + maj
  165.                 local s1 = bxor(rrotate(e, 6), rrotate(e, 11), rrotate(e, 25))
  166.                 local ch = bxor (band(e, f), band(bnot(e), g))
  167.                 local t1 = h + s1 + ch + k[i] + w[i]
  168.                 h, g, f, e, d, c, b, a = g, f, e, d + t1, c, b, a, t1 + t2
  169.         end
  170.  
  171.         H[1] = band(H[1] + a)
  172.         H[2] = band(H[2] + b)
  173.         H[3] = band(H[3] + c)
  174.         H[4] = band(H[4] + d)
  175.         H[5] = band(H[5] + e)
  176.         H[6] = band(H[6] + f)
  177.         H[7] = band(H[7] + g)
  178.         H[8] = band(H[8] + h)
  179. end
  180.  
  181. local function sha256(msg)
  182.         msg = preproc(msg, #msg)
  183.         local H = initH256({})
  184.         for i = 1, #msg, 64 do digestblock(msg, i, H) end
  185.         return str2hexa(num2s(H[1], 4) .. num2s(H[2], 4) .. num2s(H[3], 4) .. num2s(H[4], 4) ..
  186.                 num2s(H[5], 4) .. num2s(H[6], 4) .. num2s(H[7], 4) .. num2s(H[8], 4))
  187. end
  188.  
  189. function Bob()
  190.   term.clear()
  191.   term.setCursorPos(1,1)
  192.   print("1. Login")
  193.   write("2. New User?")
  194.   while true do
  195.     local event, spock = os.pullEvent ("char")
  196.     if spock == "1" then
  197.       Login()
  198.     elseif spock == "2" then
  199.       Newguy()
  200.     end
  201.   end
  202. end
  203.  
  204. function Normalperson()
  205.   term.clear()
  206.   term.setCursorPos(1,1)
  207.   print("Door opened")
  208.   rs.setOutput(doorside,true)
  209.   sleep(3)
  210.   rs.setOutput(doorside,false)
  211.   Bob()
  212. end
  213.  
  214. function Login()
  215.   term.clear()
  216.   term.setCursorPos(1,1)
  217.   print("Enter Username and Password. Leave blank to cancel.")
  218.   print("Username: ")
  219.   write("Password: ")
  220.   term.setCursorPos(11,2)
  221.   chicken = read()
  222.   term.setCursorPos(11,3)
  223.   passworded = read("*")
  224.   if fs.exists("Users/1"..chicken) == true then
  225.     file = fs.open("Users/1"..chicken, "r")
  226.     local fileData = {}
  227.     local line = file.readLine()
  228.     repeat
  229.       table.insert(fileData,line)
  230.       line = file.readLine()
  231.     until line == nil
  232.     file.close()
  233.     local hashData = sha256(passworded)
  234.     if hashData == fileData[1] then
  235.       if fileData[2] == "Rookie" then
  236.         print("You do not have sufficient permissions.")
  237.         sleep(2)
  238.         Bob()
  239.       elseif fileData[2] == "Administrator" then
  240.         Checkstartup()
  241.       elseif fileData[2] == "Regular" then
  242.         Normalperson()
  243.       elseif fileData[2] == "Denied" then
  244.         fs.delete("Users/1"..chicken)
  245.         print("Your account was not accepted, please ask the Administrator in person if you believe this to be a mistake.")
  246.         sleep(7.5)
  247.         Bob()
  248.       elseif fileData[2] == "Banned" then
  249.         print("Your account was banned by the admin.")
  250.         sleep(4)
  251.         Bob()
  252.       end
  253.     elseif fileData[1] == "ReTurnToBob" then
  254.       Bob()
  255.     else
  256.       print("Username and/or Password are incorrect.")
  257.       sleep(2)
  258.       Login()
  259.     end
  260.   else
  261.   print("Username and/or Password are incorrect")
  262.   sleep(2)
  263.   Login()
  264.   end
  265. end
  266.  
  267. function Newguy()
  268.   if fs.exists("Users/") == false then
  269.   Newadmin()
  270.   elseif fs.exists("Users/") == true then
  271.   Register()
  272.   end
  273. end
  274.  
  275. function Newadmin()
  276.   fs.makeDir("Users")
  277.   local bobdole = fs.open("Users/1","a")
  278.   bobdole.writeLine("ReTurnToBob")
  279.   bobdole.close()
  280.   term.clear()
  281.   term.setCursorPos(1,1)
  282.   print("No Users detected. Enter Admin login. You must complete Admin signup or program will not function.")
  283.   print("Username: ")
  284.   print("Password: ")
  285.   term.setCursorPos(11,3)
  286.   adminuser = read()
  287.   term.setCursorPos(11,4)
  288.   adminpass = read("*")
  289.   local holdup = sha256(adminpass)
  290.   local file = fs.open("Users/1"..adminuser,"a")
  291.   file.writeLine(holdup)
  292.   file.writeLine("Administrator")
  293.   file.close()
  294.   print("Registered new Admin")
  295.   sleep(4)
  296.   Bob()
  297. end
  298.  
  299. function Register()
  300.   local LeaveFunction = ""
  301.   term.clear()
  302.   term.setCursorPos(1,1)
  303.   print("New user setup, please enter new username and pass.")
  304.   print("Username: ")
  305.   print("Password: ")
  306.   term.setCursorPos(11,2)
  307.   newuser = read()
  308.   term.setCursorPos(11,3)
  309.   newpass = read("*")
  310.   if newuser == LeaveFunction then
  311.     Bob()
  312.   elseif fs.exists("Users/1"..newuser) == true then
  313.     print("Username already exists, please try again.")
  314.     sleep(2.5)
  315.     Register()
  316.   else
  317.     local halla = sha256(newpass)
  318.     local file = fs.open("Users/1"..newuser,"a")
  319.     file.writeLine(halla)
  320.     file.writeLine("Rookie")
  321.     file.close()
  322.     local filed = fs.open("Users/Newuserschecklist","a")
  323.     filed.writeLine(newuser)
  324.     filed.close()
  325.     print("New user made, please wait for admin authentication before logging in.")
  326.     sleep(5)
  327.     Bob()
  328.   end
  329. end
  330.  
  331. function Checkstartup()
  332.   local jimbo = shell.getRunningProgram()
  333.   if jimbo == "startup" then
  334.     Adminmenu()
  335.   elseif jimbo ~= "startup" then
  336.     term.clear()
  337.     term.setCursorPos(1,1)
  338.     print("The program will not open on startup. Would you like it to?")
  339.     print("1. Yes")
  340.     print("2. No")
  341.     while true do
  342.       local jimm, joo = os.pullEvent("char")
  343.       if joo == "1" then
  344.         fs.move(jimbo,"startup")
  345.         Adminmenu()
  346.       elseif joo == "2" then
  347.         Adminmenu()
  348.       end
  349.     end
  350.   end
  351. end
  352.  
  353. function Adminmenu()
  354.   term.clear()
  355.   term.setCursorPos(1,1)
  356.   print("Admin Menu.")
  357.   print("1. Edit Program")
  358.   print("2. New Users")
  359.   print("3. Edit User Ranks")
  360.   print("4. Exit Program")
  361.   print("5. Normal Menu")
  362.   print("6. Logout")
  363.   while true do
  364.     local tit, pie = os.pullEvent ("char")
  365.     if pie == "1" then
  366.       local steve = shell.getRunningProgram()
  367.       shell.run("edit",steve)
  368.       print("Reloading program.")
  369.       sleep(1.5)
  370.       shell.run(steve)
  371.     elseif pie == "2" then
  372.       Newuseroption()
  373.     elseif pie == "3" then
  374.       Admindisclaimer()
  375.     elseif pie == "4" then
  376.       error()
  377.     elseif pie == "5" then
  378.       Normalperson()
  379.     elseif pie == "6" then
  380.       Bob()
  381.     end
  382.   end
  383. end
  384.  
  385. function Newuseroption()
  386.   term.clear()
  387.   term.setCursorPos(1,1)
  388.   print("Are you sure you want to view the new users? You must complete every user or the rest will be deleted from the database.")
  389.   print("1. Yes")
  390.   print("2. No")
  391.   while true do
  392.     local even, tat = os.pullEvent("char")
  393.     if tat == "1" then
  394.       Newuserschecklist()
  395.     elseif tat == "2" then
  396.       Adminmenu()
  397.     end
  398.   end
  399. end
  400.  
  401. function Newuserschecklist()
  402.   local bob = fs.open("Users/Newuserschecklist","r")
  403.   local filebob = {}
  404.   local tag = bob.readLine()
  405.   table.insert(filebob,tag)
  406.   z = 2
  407.   tag = bob.readLine()
  408.   if tag == nil then
  409.     print("No new users.")
  410.     sleep(2.5)
  411.     Adminmenu()
  412.   else
  413.     repeat
  414.     term.clear()
  415.     term.setCursorPos(1,1)
  416.     table.insert(filebob,tag)
  417.     local alpha = filebob[z]
  418.     print(alpha)
  419.     print("1. Accept")
  420.     print("2. Decline")
  421.     local newbob = fs.open("Users/1"..alpha,"r")
  422.     local file = newbob.readLine()
  423.     local test = {}
  424.     while file do
  425.       table.insert(test,file)
  426.       file = newbob.readLine()
  427.     end
  428.     newbob.close()
  429.     while true do
  430.     local sir, henry = os.pullEvent ("char")
  431.     if henry == "1" then
  432.       local chick = fs.open("Users/1"..alpha,"w")
  433.       chick.writeLine(test[1])
  434.       chick.writeLine("Regular")
  435.       chick.close()
  436.       break
  437.     elseif henry == "2" then
  438.       local chick = fs.open("Users/1"..alpha,"w")
  439.       chick.writeLine(test[1])
  440.       chick.writeLine("Denied")
  441.       chick.close()
  442.       break
  443.     end
  444.   end
  445.   z = z + 1
  446.   tag = bob.readLine()
  447.   until tag == nil
  448.   bob.close()
  449.   local guess = fs.open("Users/Newuserschecklist","w")
  450.   guess.writeLine("la")
  451.   guess.close()
  452.   Bob()
  453.   end
  454. end
  455.  
  456. function Currentusers()
  457.   local tester = fs.list("Users")
  458.   local jim = {}
  459.   for a, p in ipairs(tester) do
  460.     table.insert(jim,a,p)
  461.   end
  462.   local o = 0
  463.   local x = 0
  464.   local y = 7
  465.   local z = 1
  466.   local yay = {}
  467.   repeat
  468.     yay = {}
  469.     term.clear()
  470.     term.setCursorPos(1,1)
  471.     y=y*z
  472.     local a = 0
  473.     repeat
  474.       a=a+1
  475.       x=x+1
  476.       local bob = tostring(a)
  477.       if jim[x] == nil then
  478.         break
  479.       else
  480.         table.insert(yay,jim[x])
  481.         print(a..". "..jim[x])
  482.       end
  483.     until a == y
  484.     print("8. Previous")
  485.     print("9. Next")
  486.     print("0. Exit")
  487.     while true do
  488.       local event, para = os.pullEvent("char")
  489.       if para == "1" then
  490.         table.insert(phil,yay[1])
  491.         hell()
  492.       elseif para == "2" then
  493.         if yay[2] ~= nil then
  494.           table.insert(phil,yay[2])
  495.           hell()
  496.         elseif yay[2] == nil then
  497.           print("File doesn't exist")
  498.         end
  499.       elseif para == "3" then
  500.         if yay[3] ~= nil then
  501.           table.insert(phil,yay[3])
  502.           hell()
  503.         elseif yay[3] == nil then
  504.           print("File doesn't exist")
  505.         end
  506.       elseif para == "4" then
  507.         if yay[4] ~= nil then
  508.           table.insert(phil,yay[4])
  509.           hell()
  510.         elseif yay[4] == nil then
  511.           print("File doesn't exist")
  512.         end
  513.       elseif para == "5" then
  514.         if yay[5] ~= nil then
  515.           table.insert(phil,yay[5])
  516.           hell()
  517.         elseif yay[5] == nil then
  518.           print("File doesn't exist")
  519.         end
  520.       elseif para == "6" then
  521.         if yay[6] ~= nil then
  522.           table.insert(phil,yay[6])
  523.           hell()
  524.         elseif yay[6] == nil then
  525.           print("File doesn't exist")
  526.         end
  527.       elseif para == "7" then
  528.         if yay[7] ~= nil then
  529.           table.insert(phil,yay[7])
  530.           hell()
  531.         elseif yay[7] == nil then
  532.           print("File doesn't exist")
  533.         end
  534.       elseif para == "8" then
  535.         if o == 0 then
  536.           print("Cannot go back")
  537.         elseif o ~= 0 then
  538.           o = o-2
  539.           local j = o+1
  540.           x=7*j
  541.           break
  542.         end
  543.       elseif para == "9" then
  544.         if jim[x] == nil then
  545.           print("Cannot go forward")
  546.         elseif jim[x] ~= nil then
  547.           break
  548.         end
  549.       elseif para == "0" then
  550.         Adminmenu()
  551.       end
  552.     end
  553.   o=o+1
  554.   until nil
  555. end
  556.  
  557. function hell()
  558.   term.clear()
  559.   term.setCursorPos(1,1)
  560.   local jimmy = fs.open("Users/"..phil[1],"r")
  561.   local colin = {}
  562.   local liner = jimmy.readLine()
  563.   repeat
  564.     table.insert(colin,liner)
  565.     liner = jimmy.readLine()
  566.   until liner == nil
  567.   jimmy.close()
  568.   print("Choose rank of "..phil[1].. ". Currently rank: "..colin[2])
  569.   print("1. Admin")
  570.   print("2. Regular")
  571.   print("3. Banned")
  572.   print("4. Exit")
  573.   while true do
  574.     local joe, jon = os.pullEvent("char")
  575.     if jon == "1" then
  576.       local who = fs.open("Users/"..phil[1],"w")
  577.       who.writeLine(colin[1])
  578.       who.writeLine("Administrator")
  579.       who.close()
  580.       table.remove(phil,1)
  581.       Adminmenu()
  582.     elseif jon == "2" then
  583.       local who = fs.open("Users/"..phil[1],"w")
  584.       who.writeLine(colin[1])
  585.       who.writeLine("Regular")
  586.       who.close()
  587.       table.remove(phil,1)
  588.       Adminmenu()
  589.     elseif jon == "3" then
  590.       local who = fs.open("Users/"..phil[1],"w")
  591.       who.writeLine(colin[1])
  592.       who.writeLine("Banned")
  593.       who.close()
  594.       table.remove(phil,1)
  595.       Adminmenu()
  596.     elseif jon == "4" then
  597.       Adminmenu()
  598.     end
  599.   end
  600. end
  601.  
  602. function Admindisclaimer()
  603.   term.clear()
  604.   term.setCursorPos(1,1)
  605.   print("Please do not edit the files, named: 1, and Newuserchecklist, those are used for other functions and will not work if edited")
  606.   sleep(5)
  607.   Currentusers()
  608. end
  609.  
  610. Bob()
  611. os.pullEvent=oldPull;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement