Hi,
I was inspecting a game and I noticed some of the requests, all HTTP POST requests, had an extra header in them, namely the 'Hash' header. However, this behavior seems pretty poorly documented.
Now I am looking to re-create the hash in the post request but how do I do this?
The webrequest:
POST HTTP/1.1
Host:
User-Agent: UnityPlayer/2020.3.31f1 (UnityWebRequest/1.0, libcurl/7.80.0-DEV)
Accept: */*
Accept-Encoding: deflate, gzip
Content-Type: application/json
Authorization: Bearer
Hash: 85D0A85153A24B68C6C217BEEB5903FC
X-Unity-Version: 2020.3.31f1
Content-Length: 21
How, from this request do I re-create the Hash displayed in the header?
The closest I got was that it might be an AssetBundle hash of sorts, but is it default behaviour to even use the Hash HTTP header inside the POST request?
Some help or direction would be greatly appriciated.
↧