-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TLS Support and Alternatives for CAPTCHA solving #23
Labels
help wanted
Extra attention is needed
Comments
YOPMail asks me to resolve CAPTCHA with following output when I am reading 9 messages from the YOPMail address: [
{
"id": "e_ZwDjBGR3ZGLjZwH0ZQNjBGRkZQH0Zt==",
"submit": "",
"from": "",
"date": "",
"deliverability": "Your account has been credited",
"attachments": {},
"format": "txt",
"selector": null,
"eq": null,
"attribute": null,
"pathToSave": null,
"content": "Complete the CAPTCHA to continue",
"info": []
},
{
"id": "e_ZwDjBGR3ZGH0AQHmZQNjBQx3BGplZD==",
"submit": "",
"from": "",
"date": "",
"deliverability": "Your account has been credited",
"attachments": {},
"format": "txt",
"selector": null,
"eq": null,
"attribute": null,
"pathToSave": null,
"content": "Complete the CAPTCHA to continue",
"info": []
},
{
"id": "e_ZwDjBGR2ZGx0ZmH4ZQNjBQV5ZQN4AD==",
"submit": "",
"from": "",
"date": "",
"deliverability": "Your account has been credited",
"attachments": {},
"format": "txt",
"selector": null,
"eq": null,
"attribute": null,
"pathToSave": null,
"content": "Complete the CAPTCHA to continue",
"info": []
},
{
"id": "e_ZwDjBGR2ZGxkZQH3ZQNjBQN1AQt5Aj==",
"submit": "",
"from": "",
"date": "",
"deliverability": "Your account has been credited",
"attachments": {},
"format": "txt",
"selector": null,
"eq": null,
"attribute": null,
"pathToSave": null,
"content": "Complete the CAPTCHA to continue",
"info": []
},
{
"id": "e_ZwDjBGR2ZGtjZwH2ZQNjAmL2AmHjZj==",
"submit": "",
"from": "",
"date": "",
"deliverability": "Your account has been credited",
"attachments": {},
"format": "txt",
"selector": null,
"eq": null,
"attribute": null,
"pathToSave": null,
"content": "Complete the CAPTCHA to continue",
"info": []
},
{
"id": "e_ZwDjBGR2ZGp1AmHkZQNjAmLkBGZ0ZD==",
"submit": "",
"from": "",
"date": "",
"deliverability": "Your account has been credited",
"attachments": {},
"format": "txt",
"selector": null,
"eq": null,
"attribute": null,
"pathToSave": null,
"content": "Complete the CAPTCHA to continue",
"info": []
},
{
"id": "e_ZwDjBGR2ZGpmAmH2ZQNjAmD2ZGZ0BN==",
"submit": "",
"from": "",
"date": "",
"deliverability": "Your account has been credited",
"attachments": {},
"format": "txt",
"selector": null,
"eq": null,
"attribute": null,
"pathToSave": null,
"content": "Complete the CAPTCHA to continue",
"info": []
},
{
"id": "e_ZwDjBGRmZGDlAmH0ZQNjAwV0ZGp4Zj==",
"submit": "",
"from": "",
"date": "",
"deliverability": "Your account has been credited",
"attachments": {},
"format": "txt",
"selector": null,
"eq": null,
"attribute": null,
"pathToSave": null,
"content": "Complete the CAPTCHA to continue",
"info": []
},
{
"id": "e_ZwDjBGRlZQH1ZQZ1ZQNjZwD0BGR3AD==",
"submit": "",
"from": "",
"date": "",
"deliverability": "Your account has been credited",
"attachments": {},
"format": "txt",
"selector": null,
"eq": null,
"attribute": null,
"pathToSave": null,
"content": "Complete the CAPTCHA to continue",
"info": []
}
] Correct me if I am wrong @jasp402, but I don't think that requesting 9 messages could be considered as a massive request. Do you have any recommendations how to avoid CAPTCHA using Easy-YOPmail? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
reCAPTCHA use TLS handshakes to determine whether a request is coming from a legitimate browser. Browsers handle these through specific protocols, client hello messages, and cipher suites. Node's https module allows you to define these protocols and ciphers, which can be useful for making requests seem legitimate, that is, in the case CAPTCHA solving support would ever be added.
Most CAPTCHA solvers nowadays do not require an extension and have API support, would that solve the seeming problem of CAPTCHA solvers requiring extensions?
reCAPTCHA is also pretty loose when detecting bots, so at least in my experience, it isn't much of a hassle.
Also, most CAPTCHA solvers are pretty much the same, all you'd need to do is allow for custom domain parameters.
The text was updated successfully, but these errors were encountered: