Home > Technical & Creative Skills > Programming, Servers & Scripts

What to do with "Uid", "2FA" "pass" and "cookie"? (6)


12-08-2020 01:39 PM #1 revale (Member)
What to do with "Uid", "2FA" "pass" and "cookie"?

Hi,

I got a "Uid", "2fa", "pass" and "cookie". I don't know what to do with that and didn't find anything on google that I understood.

How to do that?


12-08-2020 02:19 PM #2 twinaxe (Senior Moderator)

What exact do you need to know, what exactly don´t you understand?

When you are more precise with your questions we can also give better answers


12-08-2020 02:32 PM #3 revale (Member)

Ok. I bought a cheap FB Profile for a test. The seller gave me the login credentials like email and password but also something like this:

Uid: 10xxxxxxxx
Pass:Hoxxxxxx
2fa: Q3xxxxxxxxxxxxxxxxxxxxx
Cookie:
datr=hajzXxxxxxxxxxxxxxxxxxxxxxxxxxxxx3A53; c_user=10xxxxxxxxxxxxxxx571; locale=xx_XX; wd=1xxx716; spin=r.10xxxxxxx36_b.trxnk_t.1xxxxxxx709_s.1_v.2_; dxr=1.X5; fr=1aDxo2wxxxxxxxxxxxxxxxxxxxxxxxxM8.Be86iX.IC.XXX .0.0.Be86iR.AWWvxxxxxxUzB6; sb=kajzxxxxxxxxxxXi5q

(The "x" are from me of course)

Unfortunately the seller doesn't speak English well at all and doesn't understand my questions well. He sent me a video where I can see what to do with the 2fa code but I still don't know what to to with "Uid", "Pass" and "Cookie".

I guess Uid stands for user ID of the browser and everything needs to go somehow into the browser which came within a .rar as a GoogleChromePortable.exe.


12-08-2020 03:21 PM #4 jeremie (Moderator)

Quote Originally Posted by revale View Post
Ok. I bought a cheap FB Profile for a test. The seller gave me the login credentials like email and password but also something like this:

Uid: 10xxxxxxxx
Pass:Hoxxxxxx
2fa: Q3xxxxxxxxxxxxxxxxxxxxx
Cookie:
datr=hajzXxxxxxxxxxxxxxxxxxxxxxxxxxxxx3A53; c_user=10xxxxxxxxxxxxxxx571; locale=xx_XX; wd=1xxx716; spin=r.10xxxxxxx36_b.trxnk_t.1xxxxxxx709_s.1_v.2_; dxr=1.X5; fr=1aDxo2wxxxxxxxxxxxxxxxxxxxxxxxxM8.Be86iX.IC.XXX .0.0.Be86iR.AWWvxxxxxxUzB6; sb=kajzxxxxxxxxxxXi5q

(The "x" are from me of course)

Unfortunately the seller doesn't speak English well at all and doesn't understand my questions well. He sent me a video where I can see what to do with the 2fa code but I still don't know what to to with "Uid", "Pass" and "Cookie".

I guess Uid stands for user ID of the browser and everything needs to go somehow into the browser which came within a .rar as a GoogleChromePortable.exe.

Uid/Pass looks like an access to FB Graph API.

Cookie is probably the cookie that was created by Facebook on the computer where the account was created, allowing Facebook to detect if it must request or not an extra validation. See here how to copy it:
https://superuser.com/questions/1866...me-browser-fro


12-10-2020 07:31 AM #5 revale (Member)

Quote Originally Posted by jeremie View Post
Uid/Pass looks like an access to FB Graph API.

Cookie is probably the cookie that was created by Facebook on the computer where the account was created, allowing Facebook to detect if it must request or not an extra validation. See here how to copy it:
https://superuser.com/questions/1866...me-browser-fro
I just took some time to go through it and searched on stackoverflow. My coding skills are next to nothing. Just some html and css, that's it. And that's not even considered coding by real coders

The "editthiscookie" extension in chrome seems to be the easiest and fastest way to do it. It has an import function where you just paste the cookie code. The issue is that it has to be in JSON format. The plugin says "Error: Unexpected token d in Jason at position 0"

Maybe it refers to the "d" in datr=h"

How do I change that cookie code into JASON format. There are chrome extensions which can export the code already in JSON but I don't have access to the original browser.


12-10-2020 08:53 AM #6 jeremie (Moderator)

Quote Originally Posted by revale View Post

The "editthiscookie" extension in chrome seems to be the easiest and fastest way to do it. It has an import function where you just paste the cookie code. The issue is that it has to be in JSON format. The plugin says "Error: Unexpected token d in Jason at position 0"

Maybe it refers to the "d" in datr=h"

How do I change that cookie code into JASON format. There are chrome extensions which can export the code already in JSON but I don't have access to the original browser.
Export one of your current cookies using the extension, and you will see what format it requires.

JSON would be:

{'datr':'hajzXxxxxxxxxxxxxxxxxxxxxxxxxxxxx3A53',
'c_user':'10xxxxxxxxxxxxxxx571',
'locale':'xx_XX',
'wd':'1xxx716'}
(you have to add the other vars)

See this tool to validate your JSON format
https://jsonformatter.curiousconcept.com/


Home > Technical & Creative Skills > Programming, Servers & Scripts