Jump to content
UBot Underground

Recommended Posts

Where/when do you see the captcha?

After submitting on the registration page:

Here is my code to solve the captcha

 

Earlier I set the googlekey+apikey

set(#GoogleKey,"6Lef5iQTAAAAAKeIvIY-DeexoO3gj7ryl9rLMEnn","Global")

wait($rand(1,10))
plugin command("WindowsCommands.dll", "move mouse", "bot* - UBot Studio Stealth Experimental Edition", "HwndWrapper[UBot Studio.exe;;273c6330-3764-4432-9688-3036d180be4b]", 1403, 731)
click(<type="submit">,"Left Click","No")
wait($rand(1,10))
wait for element(<class="recaptcha-checkbox-checkmark">,"","Appear")
loop while($exists(<class="recaptcha-checkbox-checkmark">)) {
    then {
        change attribute(<id="g-recaptcha-response">,"style",$replace($scrape attribute(<id="g-recaptcha-response-1">,"style"),"display: none;",$nothing))
        wait(1)
        clear list(%_rawCaptcha)
        add list to list(%_rawCaptcha,$plugin function("Advanced Captcha.dll", "$2captcha.com recaptcha v2", #_apiKey, #GoogleKey, $url, 120, ""),"Delete","Global")
        wait(2)
        type text(<id="g-recaptcha-response">,$list item(%_rawCaptcha,1),"Standard")
        wait(2)
        run javascript("___grecaptcha_cfg.clients[0].aa.l.callback()")
        wait(2)
    }
}
Edited by jackg904
Link to post
Share on other sites

If its Recaptcha you have a couple of options, you can try using the 2captcha API here: https://2captcha.com/2captcha-api

 

Or also, there is a plugin made for it as well here: http://network.ubotstudio.com/store/product/nocaptcha-recaptcha-plugin-ultimate-captcha-copy

Link to post
Share on other sites

If its Recaptcha you have a couple of options, you can try using the 2captcha API here: https://2captcha.com/2captcha-api

 

Or also, there is a plugin made for it as well here: http://network.ubotstudio.com/store/product/nocaptcha-recaptcha-plugin-ultimate-captcha-copy

Hi,

Yes this is what I am already using in terms of the API- but I am not getting anywhere at this time.

Do you have any suggestions?

I was also using PACs? PACHA? PASH? Captcha Plugin. 

Link to post
Share on other sites

If its Recaptcha you have a couple of options, you can try using the 2captcha API here: https://2captcha.com/2captcha-api

 

Or also, there is a plugin made for it as well here: http://network.ubotstudio.com/store/product/nocaptcha-recaptcha-plugin-ultimate-captcha-copy

Bought plugin...

set(#ApiKey,"SNIP","Global")
set user agent("Chrome")
navigate("http://www.discord.com/register","Wait")
type text(<email field>,$insert text("SNIP@gmail.com",$random text(2),16),"Standard")
type text(<username field>,$random text(8),"Standard")
type text(<password field>,$random text(8),"Standard")
wait(1)
click(<innertext="Continue">,"Left Click","No")
click(<type="submit">,"Left Click","No")
wait(3)
wait for browser event("Everything Loaded","")
wait for element(<class="recaptcha-checkbox-checkmark">,"","Appear")
wait(1)
set(#GoogleSiteKey,$scrape attribute(<class="g-recaptcha">,"data-sitekey"),"Global")
wait(1)
change attribute(<id="g-recaptcha-response">,"style",$replace($scrape attribute(<id="g-recaptcha-response">,"style"),"display: none;",$nothing))
clear list(%_rawCaptcha)
add list to list(%_rawCaptcha,$list from text($plugin function("UltimateCaptchaServices.dll", "$2Captcha Service V2", #ApiKey, "", #GoogleSiteKey, $url, "", "", "", "HTTP", "Solve Captcha", "Recaptcha-NoCaptcha", "", "Yes", "No"),$new line),"Delete","Global")
change attribute(<id="g-recaptcha-response">,"value",$list item(%_rawCaptcha,1))
click(<value="Submit">,"Left Click","No")

Giving me out of range for list..

Edited by jackg904
Link to post
Share on other sites

Am unable to find the data-callback now- and using the suggested scrape isn't doing anything either.

 

set(#ScrapeCallback,$scrape attribute(<class="g-recaptcha">,"data-callback"),"Global")
run javascript("{#ScrapeCallback}();")
stop script

 

Any suggestions??

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...