Advertisement
JasonJJK

Untitled

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