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.
SpearRipper
@SpearRipper
Posts made by SpearRipper
-
RE: can openbullet generate this signature?
-
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.
-
RE: Is there any settings for that?
the only way is to unpack that app, and know where the line responsible for hidden or not allow sniffing traffic
it most likely is in file name mainfist.xml
and edit this line to be unlocked then repack the app again and install it
but this need a bit coding and programming knowledge to be done ^^
-
RE: I want to extract a key chick, I don’t know how
what you mean how?
this response seems to be encoded or unknown language
give more details so anyone can help you out
so let's say if this the success response source look for something special to make it the success key
then you will make key check look like this
<SOURCE> Contains [email protected]
-
how can i save capture in .txt file using Utility but sort one line to multiple lines using the sperater , ?
So basically i have a Capture of data that comes from JSON which they all comes together as one line i was wonder is there a way i can make them comes as multiple lines go to .txt file by Utility
so lets say for example the capture comes like this
Example (Single) = [simple1, simple2, simple3, simple4, simple5, data1, data2, data3, data4, data5]
how i can make them in the txt file as the following
simple1
simple2
simple3
simple4
simple5
data1
data2
data3
data4
data5how it can be done to save each line alone before the sperate " , "especially if it's large capture?
-
some help please, is there a way to change ISO date in SOURCE to normal Date Year/Month/Day?
So in the SOURCE
i get in many one JSON line many of purchaseDate as JSON which is a one-line
but it look like this","purchaseDate":"20120821T191447.000Z"," ","purchaseDate":"20130329T150603.000Z"," ","purchaseDate":"20120718T002416.000Z","
But as simple of full part of the line, it looks like this and many of it in one line JSON Type
{"itemId":29,"example":"example","purchaseDate":"20200602T235645.000Z","quantity":1,"example":1,"example":"20200604T160537.000Z","example":"887853ea-4897-4350-9107-4vv40ygbz535","example":"4fdjj0i3-o23u-7h1g-9351-b750ff124ff7","example":false,"example":false,"example":false},{"itemId":31,"example":"example","purchaseDate":"20130129T165309.000Z","quantity":1,"example":1,"example":"20130129T182246.000Z","example":"887853ea-4897-4350-9107-4vv40ygbz535","example":"4fdjj0i3-o23u-7h1g-9351-b750ff124ff7","example":false,"example":example,"example":false},
i was wonder if there a way i can change this ISO date to be like 2012/08/21
for all lines that have ","purchaseDate":"
but i also want to get the item Id along with itI Tried with Parse and Function but i couldn't make it happen
so it's at the end be like this in Capture or even if in .txt file is ok
ID:29 PurchaseDate: 2020/06/02
ID:31 PurchaseDate: 2013/01/29Thanks in advance for any who help.
-
RE: Environment.ini - How to make new password?
@Ruri i have links for URLs that come like this
http://11.22.333.444:5555/get.php?username=heretheusername&password=herethepassword&type=whatever_whatever
http://heredomainname.net:1234/get.php?username=heretheusername&password=herethepassword&type=whatever_whateverthis will be come combo launched as Urls or whatever so how i set it in Environment.ini
-
Environment.ini - How to make new password?
Hello, Ruri I am glad to be in this forum and thank you for the greatest OpenBullet.
I want to add to the Environment.ini a new password type
this is the line
http://letters.domainn.net:numbersonly/lettersonly_api.php?username=<USER>&password=<PASS>&lettersonly=lettersonly_lettersonly
so the password will be URL but looks like this and the domain name can sometimes be just letters or IP
i want to launch this URLS and they read as password
also, what would be posted in the Post Data in that case?
also, the link above will be used as REQUEST GET
Thank you in advance.