Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- run gethwid()
- function gethwid()
- local http_request=http_request;
- if syn then
- http_request=syn.request
- elseif SENTINEL_V2 then
- function http_request(tb)
- return {
- StatusCode = 200;
- Body=request(tb.Url, tb.Method, (tb.Body or ''))
- }
- end
- end
- local body=http_request({Url = 'https://httpbin.org/get'; Method = 'GET'}).Body;
- local decoded=game:GetService('HttpService'):JSONDecode(body)
- local hwid_list={"Syn-Fingerprint", "Exploit-Guid", "Proto-User-Identifier", "Sentinel-Fingerprint"};
- local hwid="";
- for i, v in next, hwid_list do
- if decoded.headers[v] then
- hwid = decoded.headers[v];
- break
- end
- end
- return hwid
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement