绕过 Twitter 上的 FunCaptcha。

huangapple go评论80阅读模式
英文:

bypass funcaptcha on twitter

问题

我在尝试使用Selenium绕过Twitter页面上的Arkoselabs Funcaptcha时遇到了问题。

我无法提交令牌,因为没有提交按钮。

当我尝试粘贴令牌并随机点击图片时,我会收到错误的答案错误。

我还尝试通过获取验证码图片和说明,然后请求类似于2captcha的服务并点击图片来解决验证码问题。以前可以正常工作,但现在出现了带有箭头的新类型验证码。当我做相同的操作时,我只会从2captcha得到错误的答案。

你知道我应该怎么做吗?

英文:

I have a problem with bypass Arkoselabs Funcaptcha with selenium on Twitter page.

I cant submit token because there is not any submit button.

When I try to paste token and just click random pictures I get wrong answer error.
I also tried to solve captchas by getting captcha picture and instructions, request something like 2captcha and click on images. It worked before, but now there is new type of captcha with arrows. When I did the same things I just get wrong answer from 2captcha.

Do you know what should I do?

答案1

得分: 0

var captchaToken = "3084f4a302b176cd7.96368058|r=ap-southeast-1|guitextcolor=%23FDD531|......";
((IJavaScriptExecutor)chrome).ExecuteScript("parent.postMessage(JSON.stringify({eventId:'challenge-complete',payload:{sessionToken:'" + captchaToken + "'}}),'*');");

英文:

c# code. Similar to this in Python

 var captchaToken =   "3084f4a302b176cd7.96368058|r=ap-southeast-1|guitextcolor=%23FDD531|......";   
 ((IJavaScriptExecutor)chrome).ExecuteScript("parent.postMessage(JSON.stringify({eventId:'challenge-complete',payload:{sessionToken:'" + captchaToken + "'}}),'*')"); 


</details>



huangapple
  • 本文由 发表于 2023年1月8日 23:44:54
  • 转载请务必保留本文链接:https://go.coder-hub.com/75049133.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定