Geovane
Geovane

Reputation: 63

Recaptcha bypass on vue-recaptcha

I am using online services to bypass recaptcha on my RPA tool, and they are working great for quite some time.

However I found a specific website, which is using vue-recaptcha lib. What happens here, is that this lib has all their code and listeners encapsulated into their Vue components, so I cannot just put the recaptcha code inside the textarea field and continue the flow.

Anyone has faced anything similar or has any insights I could use on this case?

Upvotes: 1

Views: 386

Answers (1)

asax_ack
asax_ack

Reputation: 137

One occasion something similar happened to me, and it turned out that there was a JavaScript function to send the ReCaptchaV2 solution, in that case it was called

captchaCallBack()

You had to put the solution in the textArea and call the function.

Upvotes: 1

Related Questions