can openbullet generate this signature?
-
Hello, guys, i wonder how to generate this signature, and is it possible to be generated in OpenBullet or nope?
The explanation for the Signature from the site:
'secret_key' and 'time'. You will need to use these values to construct a signature to be passed along with any subsequent.The signature = the Message-Digest (MD5) of the 'secret_key' modulo 256 + 'time' + the URI of the API call.
The URI of the call is the URL excluding the signature and the hostname (e.g. "/1.0/file/get_info.php?quick_key=abcdefghijklmno").
Let's make a call to get the user's personal info. Our API call URI is : /api/1.1/user/get_info.php?session_token={insert session token here} Therefore, we construct the signature by concatenating the Secret key modulo 256, Time and the URI, then apply MD5 on the result. 9316931 modulo 256 is 67. This will be calculated as follows: signature = MD5('671359061000.8125/api/1.1/user/get_info.php?session_token={insert session token here} The signature is 938a3a05ba087245fc2c7f96512cdbd8 and the API call would be:
http://www.example.com/api/1.1/user/get_info.php?session_token={insert sample token here}&signature={insert signature here}The Signature is look like this: 224fde8cead578362a3aa76d2006c452
Comes from Response used to generate the signature in next step:
","secret_key":"1615527756","time":"1598502616.2309"
URL Example: https://www.example.com/api/1.5/user/get_info.php
i tried it this way to MD5 hash but it didn't work or i am doing it wrong ^^?
16155277561598502616.2309https://www.example.com/api/1.5/user/get_info.phpAny help would be really appreciated it, thank you in advance.
-
nvm i figure it out, was pain in the ass but after few many tries, i made it using a site to do the modulo 256, sadly can't find a way to let openbullet do this.
-
I can implement this feature in OB2 ^_^ Thanks for letting me know
-
@Ruri implement ntml hash also
-
What's that? Never heard of it @jamescob7
-
he's likely talking about ntlm
but
-
@meinname
maybe hes talking about this (https://medium.com/@petergombos/lm-ntlm-net-ntlmv2-oh-my-a9b235c58ed4)
-
@Ruri hash