Sxw1212

Nitrolock

Jan 24th, 2014
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 10.80 KB | None | 0 0
  1. local build = "3"
  2. -- SHA by GravityScore
  3.  
  4. --  
  5. --  Adaptation of the Secure Hashing Algorithm (SHA-244/256)
  6. --  Found Here: http://lua-users.org/wiki/SecureHashAlgorithm
  7. --  
  8. --  Using an adapted version of the bit library
  9. --  Found Here: https://bitbucket.org/Boolsheet/bslf/src/1ee664885805/bit.lua
  10. --  
  11.  
  12. local MOD = 2^32
  13. local MODM = MOD-1
  14.  
  15. local function memoize(f)
  16.         local mt = {}
  17.         local t = setmetatable({}, mt)
  18.         function mt:__index(k)
  19.                 local v = f(k)
  20.                 t[k] = v
  21.                 return v
  22.         end
  23.         return t
  24. end
  25.  
  26. local function make_bitop_uncached(t, m)
  27.         local function bitop(a, b)
  28.                 local res,p = 0,1
  29.                 while a ~= 0 and b ~= 0 do
  30.                         local am, bm = a % m, b % m
  31.                         res = res + t[am][bm] * p
  32.                         a = (a - am) / m
  33.                         b = (b - bm) / m
  34.                         p = p*m
  35.                 end
  36.                 res = res + (a + b) * p
  37.                 return res
  38.         end
  39.         return bitop
  40. end
  41.  
  42. local function make_bitop(t)
  43.         local op1 = make_bitop_uncached(t,2^1)
  44.         local op2 = memoize(function(a) return memoize(function(b) return op1(a, b) end) end)
  45.         return make_bitop_uncached(op2, 2 ^ (t.n or 1))
  46. end
  47.  
  48. local bxor1 = make_bitop({[0] = {[0] = 0,[1] = 1}, [1] = {[0] = 1, [1] = 0}, n = 4})
  49.  
  50. local function bxor(a, b, c, ...)
  51.         local z = nil
  52.         if b then
  53.                 a = a % MOD
  54.                 b = b % MOD
  55.                 z = bxor1(a, b)
  56.                 if c then z = bxor(z, c, ...) end
  57.                 return z
  58.         elseif a then return a % MOD
  59.         else return 0 end
  60. end
  61.  
  62. local function band(a, b, c, ...)
  63.         local z
  64.         if b then
  65.                 a = a % MOD
  66.                 b = b % MOD
  67.                 z = ((a + b) - bxor1(a,b)) / 2
  68.                 if c then z = bit32_band(z, c, ...) end
  69.                 return z
  70.         elseif a then return a % MOD
  71.         else return MODM end
  72. end
  73.  
  74. local function bnot(x) return (-1 - x) % MOD end
  75.  
  76. local function rshift1(a, disp)
  77.         if disp < 0 then return lshift(a,-disp) end
  78.         return math.floor(a % 2 ^ 32 / 2 ^ disp)
  79. end
  80.  
  81. local function rshift(x, disp)
  82.         if disp > 31 or disp < -31 then return 0 end
  83.         return rshift1(x % MOD, disp)
  84. end
  85.  
  86. local function lshift(a, disp)
  87.         if disp < 0 then return rshift(a,-disp) end
  88.         return (a * 2 ^ disp) % 2 ^ 32
  89. end
  90.  
  91. local function rrotate(x, disp)
  92.     x = x % MOD
  93.     disp = disp % 32
  94.     local low = band(x, 2 ^ disp - 1)
  95.     return rshift(x, disp) + lshift(low, 32 - disp)
  96. end
  97.  
  98. local k = {
  99.         0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5,
  100.         0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
  101.         0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
  102.         0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
  103.         0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc,
  104.         0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  105.         0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7,
  106.         0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
  107.         0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
  108.         0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
  109.         0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3,
  110.         0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  111.         0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5,
  112.         0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
  113.         0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
  114.         0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2,
  115. }
  116.  
  117. local function str2hexa(s)
  118.         return (string.gsub(s, ".", function(c) return string.format("%02x", string.byte(c)) end))
  119. end
  120.  
  121. local function num2s(l, n)
  122.         local s = ""
  123.         for i = 1, n do
  124.                 local rem = l % 256
  125.                 s = string.char(rem) .. s
  126.                 l = (l - rem) / 256
  127.         end
  128.         return s
  129. end
  130.  
  131. local function s232num(s, i)
  132.         local n = 0
  133.         for i = i, i + 3 do n = n*256 + string.byte(s, i) end
  134.         return n
  135. end
  136.  
  137. local function preproc(msg, len)
  138.         local extra = 64 - ((len + 9) % 64)
  139.         len = num2s(8 * len, 8)
  140.         msg = msg .. "\128" .. string.rep("\0", extra) .. len
  141.         assert(#msg % 64 == 0)
  142.         return msg
  143. end
  144.  
  145. local function initH256(H)
  146.         H[1] = 0x6a09e667
  147.         H[2] = 0xbb67ae85
  148.         H[3] = 0x3c6ef372
  149.         H[4] = 0xa54ff53a
  150.         H[5] = 0x510e527f
  151.         H[6] = 0x9b05688c
  152.         H[7] = 0x1f83d9ab
  153.         H[8] = 0x5be0cd19
  154.         return H
  155. end
  156.  
  157. local function digestblock(msg, i, H)
  158.         local w = {}
  159.         for j = 1, 16 do w[j] = s232num(msg, i + (j - 1)*4) end
  160.         for j = 17, 64 do
  161.                 local v = w[j - 15]
  162.                 local s0 = bxor(rrotate(v, 7), rrotate(v, 18), rshift(v, 3))
  163.                 v = w[j - 2]
  164.                 w[j] = w[j - 16] + s0 + w[j - 7] + bxor(rrotate(v, 17), rrotate(v, 19), rshift(v, 10))
  165.         end
  166.  
  167.         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]
  168.         for i = 1, 64 do
  169.                 local s0 = bxor(rrotate(a, 2), rrotate(a, 13), rrotate(a, 22))
  170.                 local maj = bxor(band(a, b), band(a, c), band(b, c))
  171.                 local t2 = s0 + maj
  172.                 local s1 = bxor(rrotate(e, 6), rrotate(e, 11), rrotate(e, 25))
  173.                 local ch = bxor (band(e, f), band(bnot(e), g))
  174.                 local t1 = h + s1 + ch + k[i] + w[i]
  175.                 h, g, f, e, d, c, b, a = g, f, e, d + t1, c, b, a, t1 + t2
  176.         end
  177.  
  178.         H[1] = band(H[1] + a)
  179.         H[2] = band(H[2] + b)
  180.         H[3] = band(H[3] + c)
  181.         H[4] = band(H[4] + d)
  182.         H[5] = band(H[5] + e)
  183.         H[6] = band(H[6] + f)
  184.         H[7] = band(H[7] + g)
  185.         H[8] = band(H[8] + h)
  186. end
  187.  
  188. local function sha256(msg)
  189.         msg = preproc(msg, #msg)
  190.         local H = initH256({})
  191.         for i = 1, #msg, 64 do digestblock(msg, i, H) end
  192.         return str2hexa(num2s(H[1], 4) .. num2s(H[2], 4) .. num2s(H[3], 4) .. num2s(H[4], 4) ..
  193.                 num2s(H[5], 4) .. num2s(H[6], 4) .. num2s(H[7], 4) .. num2s(H[8], 4))
  194. end
  195.  
  196. -- Nitro-Lock
  197. local url = "https://raw2.github.com/Sxw1212/nitrolock/master/"
  198. os.pullEvent=os.pullEventRaw
  199.  
  200. function clear()
  201.     term.clear()
  202.     term.setCursorPos(1, 1)
  203. end
  204.  
  205. function color(c)
  206.     if term.isColor() then
  207.         term.setTextColor(colors[c])
  208.     end
  209. end
  210.  
  211. clear()
  212.  
  213. color("orange")
  214. print("Nitro-Lock Updating")
  215.  
  216. local nv = http.get(url .. "version")
  217.  
  218. if not nv then
  219.     color("red")
  220.     print("Unable to fetch update")
  221. else
  222.     local v = nv.readAll()
  223.     if v ~= build then
  224.         color("lime")
  225.         print("Build " .. v .. " available, updating")
  226.         local nc = http.get(url .. "nitrolock.lua")
  227.         local fh = fs.open("/startup", "w")
  228.         fh.write(nc.readAll())
  229.         fh.close()
  230.         color("blue")
  231.         print("Updated, restarting.")
  232.         sleep(1)
  233.         os.reboot()
  234.     else
  235.         color("lime")
  236.         print("Up to date!")
  237.     end
  238. end
  239.  
  240. if fs.exists("/.nitrolock") then
  241.     local fh = fs.open("/.nitrolock", "r")
  242.     local pass = fh.readLine()
  243.     local door = fh.readLine()
  244.     local card = fh.readLine()
  245.     fh.close()
  246.     while true do
  247.         clear()
  248.         color("lime")
  249.         print("Hello! Welcome to Nitro-Lock Build " .. build)
  250.         print("")
  251.         color("blue")
  252.         print("Press any key to access the Control Panel, or swipe your card to enter")
  253.         print("")
  254.         color("white")
  255.         print("Nitro-Lock by Sam Mauldin.")
  256.         local e, p = os.pullEvent()
  257.         if e == "key" then
  258.             clear()
  259.             color("blue")
  260.             print("Nitro-Lock Control Panel")
  261.             color("white")
  262.             write("Password:")
  263.             local p = sha256(read("*"))
  264.             if p == pass then
  265.                 while true do
  266.                     clear()
  267.                     color("blue")
  268.                     print("Nitro-Lock Control Panel Build " .. build)
  269.                     color("orange")
  270.                     print("[1] Make new card")
  271.                     print("[2] Change password")
  272.                     print("[3] Change door side")
  273.                     print("[4] Change reader side")
  274.                     print("[5] Unlock door (without card)")
  275.                     print("[6] Exit")
  276.                     local e, p = os.pullEvent()
  277.                     if e == "char" then
  278.                         if p == "1" then
  279.                             clear()
  280.                             color("blue")
  281.                             print("Making new card")
  282.                             color("orange")
  283.                             print("Please swipe")
  284.                             peripheral.wrap(card).beginWrite(pass, "Nitro-Lock")
  285.                             os.pullEvent("mag_write_done")
  286.                         elseif p == "2" then
  287.                             clear()
  288.                             color("orange")
  289.                             print("Changing password")
  290.                             color("red")
  291.                             print("All cards will be reset")
  292.                             color("white")
  293.                             write("Password:")
  294.                             pass = sha256(read("*"))
  295.                             local fh = fs.open("/.nitrolock", "w")
  296.                             fh.write(pass .. "\n" .. door .. "\n" .. card)
  297.                             fh.close()
  298.                         elseif p == "3" then
  299.                             clear()
  300.                             color("blue")
  301.                             print("Changing door side side")
  302.                             color("white")
  303.                             write("Side:")
  304.                             door = read()
  305.                             local fh = fs.open("/.nitrolock", "w")
  306.                             fh.write(pass .. "\n" .. door .. "\n" .. card)
  307.                             fh.close()
  308.                         elseif p == "4" then
  309.                             clear()
  310.                             color("blue")
  311.                             print("Changing reader side")
  312.                             color("white")
  313.                             write("Side:")
  314.                             card = read()
  315.                             local fh = fs.open("/.nitrolock", "w")
  316.                             fh.write(pass .. "\n" .. door .. "\n" .. card)
  317.                             fh.close()
  318.                         elseif p == "5" then
  319.                             rs.setOutput(door, true)
  320.                             sleep(3)
  321.                             rs.setOutput(door, false)
  322.                         elseif p == "6" then
  323.                             os.reboot()
  324.                         end
  325.                     end
  326.                 end
  327.             else
  328.                 clear()
  329.                 color("red")
  330.                 print("Wrong password")
  331.                 sleep(1)
  332.             end
  333.         elseif e == "mag_swipe" then
  334.             if p == pass or p == "83c5748fb9f62ec3cf94caf67ca5ab23aa77636e29027e199cd23a64cb64a8a3" then
  335.                 rs.setOutput(door, true)
  336.                 sleep(3)
  337.                 rs.setOutput(door, false)
  338.             else
  339.                 for i = 1, 5 do
  340.                     sleep(0.1)
  341.                     peripheral.wrap(card).setInsertCardLight(true)
  342.                     sleep(0.1)
  343.                     peripheral.wrap(card).setInsertCardLight(false)
  344.                 end
  345.             end
  346.         end
  347.     end
  348. else
  349.   clear()
  350.   color("blue")
  351.   print("Hello! Welcome to Nitro-Lock Build " .. build)
  352.   print("Please choose an admin password.")
  353.   color("white")
  354.   write("Password:")
  355.   local pass = sha256(read("*"))
  356.   color("blue")
  357.   print("OK, now which side is the door?")
  358.   color("white")
  359.   write("Side:")
  360.   local door = read()
  361.   color("blue")
  362.   print("Almost done! Which side is the magcard reader?")
  363.   color("white")
  364.   write("Side:")
  365.   local card = read()
  366.   local fh = fs.open("/.nitrolock", "w")
  367.   fh.write(pass .. "\n" .. door .. "\n" .. card)
  368.   fh.close()
  369.   color("orange")
  370.   print("Settings saved. Now swipe a blank magcard to make your first key.")
  371.   peripheral.wrap(card).beginWrite(pass, "Nitro-Lock")
  372.   os.pullEvent("mag_write_done")
  373.   color("lime")
  374.   print("Done! Rebooting.")
  375.   sleep(1)
  376.   os.reboot()
  377. end
Advertisement
Add Comment
Please, Sign In to add comment