Advertisement
ZeyRoxs

COPY HWID

Jun 7th, 2021
1,428
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.87 KB | None | 0 0
  1. local http_request = http_request;
  2. if syn then
  3.     http_request = syn.request
  4. elseif SENTINEL_V2 then
  5.     function http_request(tb)
  6.         return {
  7.             StatusCode = 200;
  8.             Body = request(tb.Url, tb.Method, (tb.Body or ''))
  9.         }
  10.     end
  11. end
  12.  
  13. local body = http_request({Url = 'https://httpbin.org/get'; Method = 'GET'}).Body;
  14. local decoded = game:GetService('HttpService'):JSONDecode(body)
  15. local hwid_list = {"Syn-Fingerprint", "Exploit-Guid", "Proto-User-Identifier", "Sentinel-Fingerprint"};
  16. local hwid = "";
  17.  
  18. for i, v in next, hwid_list do
  19.     if decoded.headers[v] then
  20.         hwid = decoded.headers[v];
  21.         break
  22.     end
  23. end
  24.  
  25. if hwid then
  26.     setclipboard(hwid)
  27.     game:GetService("Players").LocalPlayer:Kick('\nhwid copied to clipboard\nnow paste it')
  28. else
  29.     game:GetService("Players").LocalPlayer:Kick('unable to find hwid')
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement