A solver for the binance captcha.
Decided to open source this, the code is not great, this was also made a long time ago so it might not work anymore but it's still a good project to learn from.
Note
Deobfuscator still works.
- Box
git clone https://github.com/brianxor/binance-solver.git
npm install
npm run start
Base URL: http://127.0.0.1:5000/
Tip
You can configure the server port through .env file.
/captcha/solve
Method: POST
Parameter | Type | Description | Required |
---|---|---|---|
mode |
string | Solving Mode | Yes |
bizId |
string | Method Id | Yes |
captchaData |
object | Captcha Data | Yes |
Parameter | Type | Description | Required |
---|---|---|---|
sig |
string | From /getCaptcha |
Yes |
salt |
string | From /getCaptcha |
Yes |
path2 |
string | From /getCaptcha |
Yes |
ek |
string | From /getCaptcha |
Yes |
captchaType |
string | From /getCaptcha |
Yes |
tag |
string | From /getCaptcha |
Yes |
{
"mode": "PAYLOAD",
"bizId": "login",
"captchaData": {
"sig": "",
"salt": "",
"path2": "",
"ek": "",
"captchaType": "BOX",
"tag": ""
}
}