how to split password in openbullet(please read my problem)
-
I m making a config and get this problem, this site has 2 passwords and both are base64 encoded, I can decode then in openbullet but I m confused on how to split password in openbullet.
Content-Length: 121
Content-Type: application/x-www-form-urlencoded
Host:
Connection: Keep-Alive
Accept-Encoding: gzip
Etag:
Passhalf: NLIzR05=device_regid=a72f8f741d1951e7&password=a6lsbHWy&imeino=3636&username=<USER>&appbuildnumber=61
here u can see half password in header and another half password in post data
how to do it? please tell me, both are base64 encoded
-
Have you tried the substring function?
-
yes I tried it but it didn't work, please
-
What do you mean it didn't work? Please show the loliscript
-
I can able to split the 0 to 6 using substring but can't able to split like 7 to 12
this is the password base64 encoded- am9objEyM0dPI can able to split am9obj using substring but can't able to split EyM0dP
-
You can use regex match function
^.{6}
this will match the first 6
.{6}$
this will match the last 6
-
love u bro
problem solved
u r absolutely genius
-
@Ruri bro one problem is that, this site randomly split password and I don't know what to put? I mean I m confused,
-
I have no idea, you have to find out how it decides where to split the password. Look at the js of the website