Guest User

Untitled

a guest
Dec 28th, 2017
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.94 KB | None | 0 0
  1. local function pb(paste,file)
  2. local response = http.get("http://pastebin.com/raw/"..paste)
  3. local sResponse = response.readAll()
  4. response.close()
  5. local file = fs.open( file, "w" )
  6. file.write(sResponse)
  7. end
  8.  
  9. local MOD = 2^32
  10. local MODM = MOD-1
  11.  
  12. local function memoize(f)
  13. local mt = {}
  14. local t = setmetatable({}, mt)
  15. function mt:__index(k)
  16. local v = f(k)
  17. t[k] = v
  18. return v
  19. end
  20. return t
  21. end
  22.  
  23. local function make_bitop_uncached(t, m)
  24. local function bitop(a, b)
  25. local res,p = 0,1
  26. while a ~= 0 and b ~= 0 do
  27. local am, bm = a % m, b % m
  28. res = res + t[am][bm] * p
  29. a = (a - am) / m
  30. b = (b - bm) / m
  31. p = p*m
  32. end
  33. res = res + (a + b) * p
  34. return res
  35. end
  36. return bitop
  37. end
  38.  
  39. local function make_bitop(t)
  40. local op1 = make_bitop_uncached(t,2^1)
  41. local op2 = memoize(function(a) return memoize(function(b) return op1(a, b) end) end)
  42. return make_bitop_uncached(op2, 2 ^ (t.n or 1))
  43. end
  44.  
  45. local bxor1 = make_bitop({[0] = {[0] = 0,[1] = 1}, [1] = {[0] = 1, [1] = 0}, n = 4})
  46.  
  47. local function bxor(a, b, c, ...)
  48. local z = nil
  49. if b then
  50. a = a % MOD
  51. b = b % MOD
  52. z = bxor1(a, b)
  53. if c then z = bxor(z, c, ...) end
  54. return z
  55. elseif a then return a % MOD
  56. else return 0 end
  57. end
  58.  
  59. local function band(a, b, c, ...)
  60. local z
  61. if b then
  62. a = a % MOD
  63. b = b % MOD
  64. z = ((a + b) - bxor1(a,b)) / 2
  65. if c then z = bit32_band(z, c, ...) end
  66. return z
  67. elseif a then return a % MOD
  68. else return MODM end
  69. end
  70.  
  71. local function bnot(x) return (-1 - x) % MOD end
  72.  
  73. local function rshift1(a, disp)
  74. if disp < 0 then return lshift(a,-disp) end
  75. return math.floor(a % 2 ^ 32 / 2 ^ disp)
  76. end
  77.  
  78. local function rshift(x, disp)
  79. if disp > 31 or disp < -31 then return 0 end
  80. return rshift1(x % MOD, disp)
  81. end
  82.  
  83. local function lshift(a, disp)
  84. if disp < 0 then return rshift(a,-disp) end
  85. return (a * 2 ^ disp) % 2 ^ 32
  86. end
  87.  
  88. local function rrotate(x, disp)
  89. x = x % MOD
  90. disp = disp % 32
  91. local low = band(x, 2 ^ disp - 1)
  92. return rshift(x, disp) + lshift(low, 32 - disp)
  93. end
  94.  
  95. local k = {
  96. 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5,
  97. 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
  98. 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
  99. 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
  100. 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc,
  101. 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  102. 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7,
  103. 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
  104. 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
  105. 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
  106. 0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3,
  107. 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  108. 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5,
  109. 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
  110. 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
  111. 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2,
  112. }
  113.  
  114. local function str2hexa(s)
  115. return (string.gsub(s, ".", function(c) return string.format("%02x", string.byte(c)) end))
  116. end
  117.  
  118. local function num2s(l, n)
  119. local s = ""
  120. for i = 1, n do
  121. local rem = l % 256
  122. s = string.char(rem) .. s
  123. l = (l - rem) / 256
  124. end
  125. return s
  126. end
  127.  
  128. local function s232num(s, i)
  129. local n = 0
  130. for i = i, i + 3 do n = n*256 + string.byte(s, i) end
  131. return n
  132. end
  133.  
  134. local function preproc(msg, len)
  135. local extra = 64 - ((len + 9) % 64)
  136. len = num2s(8 * len, 8)
  137. msg = msg .. "\128" .. string.rep("\0", extra) .. len
  138. assert(#msg % 64 == 0)
  139. return msg
  140. end
  141.  
  142. local function initH256(H)
  143. H[1] = 0x6a09e667
  144. H[2] = 0xbb67ae85
  145. H[3] = 0x3c6ef372
  146. H[4] = 0xa54ff53a
  147. H[5] = 0x510e527f
  148. H[6] = 0x9b05688c
  149. H[7] = 0x1f83d9ab
  150. H[8] = 0x5be0cd19
  151. return H
  152. end
  153.  
  154. local function digestblock(msg, i, H)
  155. local w = {}
  156. for j = 1, 16 do w[j] = s232num(msg, i + (j - 1)*4) end
  157. for j = 17, 64 do
  158. local v = w[j - 15]
  159. local s0 = bxor(rrotate(v, 7), rrotate(v, 18), rshift(v, 3))
  160. v = w[j - 2]
  161. w[j] = w[j - 16] + s0 + w[j - 7] + bxor(rrotate(v, 17), rrotate(v, 19), rshift(v, 10))
  162. end
  163.  
  164. 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]
  165. for i = 1, 64 do
  166. local s0 = bxor(rrotate(a, 2), rrotate(a, 13), rrotate(a, 22))
  167. local maj = bxor(band(a, b), band(a, c), band(b, c))
  168. local t2 = s0 + maj
  169. local s1 = bxor(rrotate(e, 6), rrotate(e, 11), rrotate(e, 25))
  170. local ch = bxor (band(e, f), band(bnot(e), g))
  171. local t1 = h + s1 + ch + k[i] + w[i]
  172. h, g, f, e, d, c, b, a = g, f, e, d + t1, c, b, a, t1 + t2
  173. end
  174.  
  175. H[1] = band(H[1] + a)
  176. H[2] = band(H[2] + b)
  177. H[3] = band(H[3] + c)
  178. H[4] = band(H[4] + d)
  179. H[5] = band(H[5] + e)
  180. H[6] = band(H[6] + f)
  181. H[7] = band(H[7] + g)
  182. H[8] = band(H[8] + h)
  183. end
  184.  
  185. local function sha256(msg)
  186. msg = preproc(msg, #msg)
  187. local H = initH256({})
  188. for i = 1, #msg, 64 do digestblock(msg, i, H) end
  189. return str2hexa(num2s(H[1], 4) .. num2s(H[2], 4) .. num2s(H[3], 4) .. num2s(H[4], 4) ..
  190. num2s(H[5], 4) .. num2s(H[6], 4) .. num2s(H[7], 4) .. num2s(H[8], 4))
  191. end
  192. if not http then
  193. printError("Xeon OS needs the http API")
  194. return
  195. end
  196. shell.run("pastebin get 2wxQPtuv Xeon/System/installationbackground")
  197. term.setTextColor(colors.black)
  198. term.setBackgroundColor(colors.white)
  199. local isp = paintutils.loadImage("Xeon/System/installationbackground")
  200. paintutils.drawImage(isp,1,1)
  201.  
  202. local function continuebutton()
  203. term.setTextColor(colors.black)
  204. term.setBackgroundColor(colors.white)
  205. term.setCursorPos(35,15)
  206. print("Continue")
  207. local event, button, x, y = os.pullEvent("mouse_click")
  208. if y == 15 and x < 43 and x > 34 and button == 1 then
  209. continued = 1
  210. end
  211. end
  212.  
  213. term.setTextColor(colors.black)
  214. term.setBackgroundColor(colors.white)
  215. term.setCursorPos(13,8)
  216. print("Please wait while Xeon OS ")
  217. term.setCursorPos(11,9)
  218. print("downloads the necessary Files...")
  219.  
  220. pb("PyYKSwFk","Xeon/System/login")
  221. pb("ChNyQYEm","Xeon/System/welcome")
  222. pb("Di9SWCeC","Xeon/System/bkgd")
  223. pb("gLLy8GSd","Xeon/System/black")
  224. pb("zm2rKe83","Xeon/System/defaultuser.paint")
  225. pb("kFysEaaF","Xeon/System/Exit.paint")
  226. pb("ZsGuGi0M","Xeon/System/lightB")
  227. pb("Kh1Y54F7","Xeon/System/logo")
  228. pb("772v6E6D","Xeon/System/menu10")
  229. pb("sqsS8S0S","Xeon/System/system")
  230. pb("PuBekjhj","Xeon/System/white")
  231. pb("zY24cE2L","Xeon/System/updater")
  232. pb("yf0hGAEi","Xeon/System/execute")
  233. pb("DL1fgXwe","Xeon/System/exitscreen")
  234. pb("umYiNCt5","Xeon/System/optionswindow")
  235. pb("6tztv9dq","Xeon/System/optionswindow2")
  236. pb("KAeHtrRE","Xeon/System/powermenu")
  237. pb("6te2Eqi3","Xeon/System/searchbar")
  238. pb("2wxQPtuv","Xeon/System/installationbackground")
  239. pb("HA3UwBjm","startup")
  240.  
  241. paintutils.drawImage(isp,1,1)
  242. term.setCursorPos(13,8)
  243. term.setTextColor(colors.black)
  244. term.setBackgroundColor(colors.white)
  245. print(" Welcome to Xeon OS !")
  246. while true do
  247. continuebutton()
  248. if continued == 1 then
  249. continued = 0
  250. paintutils.drawImage(isp,1,1)
  251. term.setCursorPos(13,8)
  252. term.setTextColor(colors.black)
  253. term.setBackgroundColor(colors.white)
  254. print("Please choose a Username !")
  255. term.setCursorPos(13,11)
  256. local user = read()
  257. paintutils.drawImage(isp,1,1)
  258. term.setCursorPos(13,8)
  259. term.setTextColor(colors.black)
  260. term.setBackgroundColor(colors.white)
  261. print("Please choose a Password !")
  262. term.setCursorPos(13,11)
  263. local pass = read("*")
  264. paintutils.drawImage(isp,1,1)
  265. term.setCursorPos(13,8)
  266. term.setTextColor(colors.black)
  267. term.setBackgroundColor(colors.white)
  268. print("Please repeat the Password !")
  269. term.setCursorPos(13,11)
  270. local pass2 = read("*")
  271. if pass == pass2 then
  272. local vpass = sha256(pass)
  273. local filez = fs.open("Xeon/Users/"..user,"a")
  274. filez.writeLine(vpass)
  275. paintutils.drawImage(isp,1,1)
  276. term.setCursorPos(13,8)
  277. term.setTextColor(colors.black)
  278. term.setBackgroundColor(colors.white)
  279. print("Installation finished !")
  280. term.setCursorPos(13,9)
  281. term.setTextColor(colors.black)
  282. term.setBackgroundColor(colors.white)
  283. pb("Kh1Y54F7","Xeon/System/new")
  284. print("The OS will reboot now...")
  285. sleep(2)
  286. os.reboot()
  287. else
  288. term.setCursorPos(13,11)
  289. term.setTextColor(colors.red)
  290. textutils.slowPrint(" The passwords dont match ! ")
  291. term.setTextColor(colors.black)
  292. end
  293. end
  294. end
Add Comment
Please, Sign In to add comment