Skip to content
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

Open
harmlessaccount opened this issue Aug 18, 2024 · 1 comment
Open

TLS Support and Alternatives for CAPTCHA solving #23

harmlessaccount opened this issue Aug 18, 2024 · 1 comment
Assignees
Labels
help wanted Extra attention is needed

Comments

@harmlessaccount
Copy link

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.

@jasp402 jasp402 self-assigned this Aug 27, 2024
@iam-alex-p
Copy link

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?

@jasp402 jasp402 added the help wanted Extra attention is needed label Oct 30, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

3 participants