Advertisement
Shrektella

Untitled

Mar 4th, 2021
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.74 KB | None | 0 0
  1. local whitelist = {}
  2. -- // define alias for http function
  3. local http_request = http_request;
  4. if syn then
  5. http_request = syn.request
  6. elseif SENTINEL_V2 then
  7. function http_request(tb)
  8. return {
  9. StatusCode = 200;
  10. Body = request(tb.Url, tb.Method, (tb.Body or ''))
  11. }
  12. end
  13. end
  14.  
  15. if (not http_request) then
  16. return game:GetService('Players').LocalPlayer:Kick('Unable to find proper request function')
  17. end
  18.  
  19. -- // define hash function
  20.  
  21. local hash; do
  22. local MOD = 2^32
  23. local MODM = MOD-1
  24. local bxor = bit32.bxor;
  25. local band = bit32.band;
  26. local bnot = bit32.bnot;
  27. local rshift1 = bit32.rshift;
  28. local rshift = bit32.rshift;
  29. local lshift = bit32.lshift;
  30. local rrotate = bit32.rrotate;
  31.  
  32. local str_gsub = string.gsub;
  33. local str_fmt = string.format;
  34. local str_byte = string.byte;
  35. local str_char = string.char;
  36. local str_rep = string.rep;
  37.  
  38. local k = {
  39. 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5,
  40. 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
  41. 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
  42. 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
  43. 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc,
  44. 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  45. 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7,
  46. 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
  47. 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
  48. 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
  49. 0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3,
  50. 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  51. 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5,
  52. 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
  53. 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
  54. 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2,
  55. }
  56. local function str2hexa(s)
  57. return (str_gsub(s, ".", function(c) return str_fmt("%02x", str_byte(c)) end))
  58. end
  59. local function num2s(l, n)
  60. local s = ""
  61. for i = 1, n do
  62. local rem = l % 256
  63. s = str_char(rem) .. s
  64. l = (l - rem) / 256
  65. end
  66. return s
  67. end
  68. local function s232num(s, i)
  69. local n = 0
  70. for i = i, i + 3 do n = n*256 + str_byte(s, i) end
  71. return n
  72. end
  73. local function preproc(msg, len)
  74. local extra = 64 - ((len + 9) % 64)
  75. len = num2s(8 * len, 8)
  76. msg = msg .. "\128" .. str_rep("\0", extra) .. len
  77. assert(#msg % 64 == 0)
  78. return msg
  79. end
  80. local function initH256(H)
  81. H[1] = 0x6a09e667
  82. H[2] = 0xbb67ae85
  83. H[3] = 0x3c6ef372
  84. H[4] = 0xa54ff53a
  85. H[5] = 0x510e527f
  86. H[6] = 0x9b05688c
  87. H[7] = 0x1f83d9ab
  88. H[8] = 0x5be0cd19
  89. return H
  90. end
  91. local function digestblock(msg, i, H)
  92. local w = {}
  93. for j = 1, 16 do w[j] = s232num(msg, i + (j - 1)*4) end
  94. for j = 17, 64 do
  95. local v = w[j - 15]
  96. local s0 = bxor(rrotate(v, 7), rrotate(v, 18), rshift(v, 3))
  97. v = w[j - 2]
  98. w[j] = w[j - 16] + s0 + w[j - 7] + bxor(rrotate(v, 17), rrotate(v, 19), rshift(v, 10))
  99. end
  100. 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]
  101. for i = 1, 64 do
  102. local s0 = bxor(rrotate(a, 2), rrotate(a, 13), rrotate(a, 22))
  103. local maj = bxor(band(a, b), band(a, c), band(b, c))
  104. local t2 = s0 + maj
  105. local s1 = bxor(rrotate(e, 6), rrotate(e, 11), rrotate(e, 25))
  106. local ch = bxor(band(e, f), band(bnot(e), g))
  107. local t1 = h + s1 + ch + k[i] + w[i]
  108. h, g, f, e, d, c, b, a = g, f, e, d + t1, c, b, a, t1 + t2
  109. end
  110. H[1] = band(H[1] + a)
  111. H[2] = band(H[2] + b)
  112. H[3] = band(H[3] + c)
  113. H[4] = band(H[4] + d)
  114. H[5] = band(H[5] + e)
  115. H[6] = band(H[6] + f)
  116. H[7] = band(H[7] + g)
  117. H[8] = band(H[8] + h)
  118. end
  119. function hash(msg, t)
  120. msg = preproc(msg, #msg)
  121. local H = initH256({})
  122. for i = 1, #msg, 64 do digestblock(msg, i, H) end
  123. return str2hexa(num2s(H[1], 4) .. num2s(H[2], 4) .. num2s(H[3], 4) .. num2s(H[4], 4) .. num2s(H[5], 4) .. num2s(H[6], 4) .. num2s(H[7], 4) .. num2s(H[8], 4))
  124. end
  125. end
  126. function whitelist:check(key)
  127. local data = http_request({
  128. Url = ('https://bandy-legged-compla.000webhostapp.com/server.php?key=' .. key);
  129. Method = 'GET';
  130. })
  131.  
  132. if data.StatusCode == 200 then
  133. -- // if the request did not error...
  134. local response = data.Body;
  135. if response == hash(key) then
  136. -- // wow, they are authenticated!
  137. print("Whitelisted")
  138. else
  139. print("Not Whitelisted")
  140. end
  141. end
  142. end
  143.  
  144. function whitelist:test()
  145. print("lolllll")
  146. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement