Jump to content
UBot Underground

Help With Google Recaptcha Invisable


Recommended Posts

Hi,

 

First time ubot and trying to resolve a google recaptcha. I can't seem to get pass. What am I missing?

 

I also noticed that I can't resolve it manually due to low score of the ubot browser. Could this be the reason?

 

Note, this site may not work if you're in the usa.

thanks

reset browser
navigate("https://edgeless.io/home","Wait")
wait for element($element offset(<login button>,1),"","Appear")
click($element offset(<login link>,1),"Left Click","No")
wait for element($element offset(<login button>,2),"","Appear")
type text(<email field>,"test@gmail.com","Standard")
type text(<password field>,"ddddddd","Standard")
set(#googleurl,$scrape attribute(<class="modal-column">,"innerhtml"),"Global")
set(#googlecaptcha_key,$find regular expression(#googleurl,"(?<=k=)([^&]+)"),"Global")
set(#captcha_provider_key,"xxxxxxxxxx","Global")
set(#current_URL_Generated,$url,"Global")
in new browser {
    navigate("http://2captcha.com/in.php?key={#captcha_provider_key}&method=userrecaptcha&googlekey={#googlecaptcha_key}&pageurl={#current_URL_Generated}&invisible=1","Wait")
    wait(5)
    set(#captcha_job_id,$scrape attribute($element offset(<tagname="body">,0),"innertext"),"Global")
    set(#captcha_job_id_clean,$replace(#captcha_job_id,"OK|",""),"Global")
    navigate("http://2captcha.com/res.php?key={#captcha_provider_key}&action=get&id={#captcha_job_id_clean}","Wait")
    run javascript("location.reload(true);")
    loop while($search page("CAPCHA_NOT_READY")) {
        wait(5)
        run javascript("location.reload(true);")
        wait(5)
        set(#captcha_answer,$scrape attribute($element offset(<tagname="body">,0),"innertext"),"Global")
        set(#captcha_answer_clean,$replace(#captcha_answer,"OK|",""),"Global")
    }
}
run javascript("document.getElementById(\"g-recaptcha-response\").innerHTML=\"{#captcha_answer_clean}\";")
run javascript("document.getElementsByClassName(\"form.ng-pristine\").submit();")
wait(99)
Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...