Jump to content
UBot Underground

[FREE Plugin] Advanced Captcha (V3)


Recommended Posts

thanks for the example bud.

but from what DBC has told me is that its sending wrong information.

 

Take this screenshot from the example code used.

http://content.screencast.com/users/lowridertj/folders/Snagit/media/39880131-32a8-4ec7-9d2a-7e2f6a77cec1/05.18.2016-08.png

 

Based on this type of captcha the Banner image is one that shows the little Image in the top right.  

This captcha didnt have that so it shouldnt be required.

However the solving plugin requires it be sent.

 

So im thinking the plugin needs fixed to correctly be sending the captcha to DBC to solve correctly. 
In most cases this type of captcha when shown you can grab a screenshot of the entire captcha with question
without the need for banner text or banner image to solve correctly

 

However the way the plugin is setup at the moment you cant send just the screenshot

of the image as it wont allow it and gives error of missing image (banner)

Link to post
Share on other sites
  • Replies 224
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

Ubotplugin.com End of Business Good day Ubot community. Over the last 9 years I invested a lot of time in developing the plugins. I hope that it was of good use for all of you. Only in the last

Shouldn't the Plugin do the following for DBC to solve the Captcha Properly: Image Collected > Image Sent to DBC for Solving > DBC responds with CaptchaID > Plugin Pause > LOOP(Poll Captc

3.4.0.0 (Beta) Remove command 2captcha.com Add new commands 2captcha.com audio captcha 2captcha.com click captcha 2captcha.com key captcha 2captcha.com normal captcha 2captcha.com recaptcha v1 2captc

Posted Images

thanks for the example bud.

but from what DBC has told me is that its sending wrong information.

 

Take this screenshot from the example code used.

http://content.screencast.com/users/lowridertj/folders/Snagit/media/39880131-32a8-4ec7-9d2a-7e2f6a77cec1/05.18.2016-08.png

 

Based on this type of captcha the Banner image is one that shows the little Image in the top right.  

This captcha didnt have that so it shouldnt be required.

However the solving plugin requires it be sent.

 

So im thinking the plugin needs fixed to correctly be sending the captcha to DBC to solve correctly. 

In most cases this type of captcha when shown you can grab a screenshot of the entire captcha with question

without the need for banner text or banner image to solve correctly

 

However the way the plugin is setup at the moment you cant send just the screenshot

of the image as it wont allow it and gives error of missing image (banner)

You can use either one (banner image or captain text).

Link to post
Share on other sites

but if you dont set the banner image with type 3, it will give an error back that no image is set

 

text I believe is optional though

 

and when using banner it pushes it offer to the far top right

 

making it impossible for them to read at the solver.

 

 

So it would be best to have one just for normal nocaptcha recaptcha that you can send the text, and image of the cells

or adjust it that the banner centers when no text is present, or if text present optional for banner  1 or the other

 

you can see how it came across to the solver and causes lower solve rates


also found imagetypers and de-captcher has nocaptcha solving as well

Link to post
Share on other sites

but if you dont set the banner image with type 3, it will give an error back that no image is set

 

text I believe is optional though

 

and when using banner it pushes it offer to the far top right

 

making it impossible for them to read at the solver.

 

 

So it would be best to have one just for normal nocaptcha recaptcha that you can send the text, and image of the cells

or adjust it that the banner centers when no text is present, or if text present optional for banner  1 or the other

 

you can see how it came across to the solver and causes lower solve rates

also found imagetypers and de-captcher has nocaptcha solving as well

Oh. sorry. I'm confused.

 

try.

set(#UserName,"XXXX","Global")
set(#Password,"XXXX","Global")
set user agent("Android")
navigate("https://goo.gl/","Wait")
wait for browser event("Everything Loaded","")
wait(1)
set(#BannerText,$scrape attribute(<class="fbc-imageselect-message-text">,"innertext"),"Global")
save element image(<class="fbc-imageselect-payload">,"{$special folder("Desktop")}\\CaptchaImage.jpg")
plugin command("Advanced Image.dll", "image reduce file size", "{$special folder("Desktop")}\\CaptchaImage.jpg", "{$special folder("Desktop")}\\CaptchaImage.jpg", 100, "Image Quality")
add list to list(%CaptchaClick,$plugin function("Advanced Captcha.dll", "$deathbycaptcha.com", #UserName, #Password, "{$special folder("Desktop")}\\CaptchaImage.jpg", "", #BannerText, "", "Recognize Type 4"),"Delete","Global")
set list position(%CaptchaClick,1)
loop($subtract($list total(%CaptchaClick),1)) {
    click(<value=$next list item(%CaptchaClick)>,"Left Click","No")
    wait(1)
}
wait(1)
click(<value="Verify">,"Left Click","No")
wait(2)
set(#CodeText,$scrape attribute(<onclick="this.select()">,"value"),"Global")
wait(1)
change attribute(<name="g-recaptcha-response">,"value",#CodeText)
change attribute($element offset(<url field>,0),"value","https://www.facebook.com/")
click(<id="shortenerSubmitButton">,"Left Click","No")
Link to post
Share on other sites

Sample.

set(#_apiKey,"XXXXXX","Global")
navigate("https://goo.gl","Wait")
wait for browser event("Everything Loaded","")
click(<class="recaptcha-checkbox-checkmark">,"Left Click","No")
wait(5)
set(#_bannerText,$trim($replace($scrape attribute(<class="rc-imageselect-desc-wrapper">,"innertext"),"Click verify once there are none left.","")),"Global")
set(#_captchaId,"","Global")
set(#_process,$true,"Global")
loop(10) {
    if(#_process) {
        then {
            set(#_saveImagePath,"{$special folder("Application")}\\CaptchaImage.jpg","Global")
            save element image(<class="rc-imageselect-target">,#_saveImagePath)
            plugin command("Advanced Image.dll", "image resize", #_saveImagePath, #_saveImagePath, "To Size", "300x300", 000000)
            clear list(%_rawCaptcha)
            add list to list(%_rawCaptcha,$plugin function("Advanced Captcha.dll", "$2captcha.com", #_apiKey, #_saveImagePath, #_captchaId, "Recognize ReCAPTCHA Type 3", #_bannerText),"Delete","Global")
            set(#_captchaId,$list item(%_rawCaptcha,0),"Global")
            if($comparison($list item(%_rawCaptcha,1),"= Equals","No_matching_images")) {
                then {
                    set(#_process,$false,"Global")
                }
                else {
                    remove from list(%_rawCaptcha,0)
                    loop($list total(%_rawCaptcha)) {
                        click($element offset(<class="rc-image-tile-target">,$plugin function("Advanced Data Text File.dll", "$random list items", %_rawCaptcha, "-1", 1, "True", "False")),"Left Click","No")
                        wait($plugin function("Advanced Data Text File.dll", "$rand 2", 1.1, 2.9, "Decimal", "#"))
                    }
                }
            }
        }
        else {
        }
    }
}
click(<id="recaptcha-verify-button">,"Left Click","No")
  • Like 1
Link to post
Share on other sites

V3.2.2.5
imagetyperz.com: add option "Recognize ReCAPTCHA","Recognize Confident Captcha","Fun Captcha Roatate Captcha"
Warning
No test because i have no credit.

Add sample file
Sample reCAPTCHA.ubot

Link to post
Share on other sites

 

My Plugin : Advanced Ubot | Advanced Dialog | Advanced Systems | Advanced Screen and Windows | Advanced DateTime | Advanced Data Text File | Advanced Captcha | Advanced Captcha (V3) | Create Table From Excel (Lite)

 
 
 
 

Advanced Captcha (V3)

   WebSite                         TEST

deathbycaptcha.com       [y]

de-captcher.com             [y]

antigate.com                   [y]

eve.cm                            [y]

humancoder.com            [y]

imagedecoders.com       [n]

beatcaptchas.com          [n]

imagedecoders.com       [n]

imagetyperz.com            [n]

shanibpo.com                [n]

captchabot.com             [n]

ripcaptcha.com              [n]

2captcha.com                [y]

spamvilla.com                [y]

captchatronix.com         [y]

captchasolutions.com    [y]

 

 

Big changes. It can not replace V2 or lower.

*** Some items I have not tested. If you want me to test. Please feel free user account To me. Borrowed temporarily ***

 

 

 

Price Update (04/11/2014)

 

deathbycaptcha.com      1.39$ per 1000 CAPTCHAs

de-captcher.com             2.00$ per 1000 CAPTCHAs

antigate.com                   0.7$ per 1000 CAPTCHAs

eve.cm                            0.5$ per 1000 CAPTCHAs

imagedecoders.com       1.35$ per 1000 CAPTCHAs

beatcaptchas.com          8.00$ per 1000 CAPTCHAs

humancoder.com            1.38$ per 1000 CAPTCHAs

imagedecoders.com       1.35$ per 1000 CAPTCHAs

imagetyperz.com            1.30$ per 1000 CAPTCHAs

shanibpo.com                1.30$ per 1000 CAPTCHAs

captchabot.com             1.00$ per 1000 CAPTCHAs

ripcaptcha.com              1.29$ per 1000 CAPTCHAs

2captcha.com                 0.5$ per 1000 CAPTCHAs

captchasolutions.com     0.99$ per 1000 CAPTCHAs

 

                 Unlimited Captcha

spamvilla.com                 $15 per Month

captchatronix.com           $15.97 per Month

 

 

Download

 

 

 

My Plugin : Advanced Ubot | Advanced Dialog | Advanced Systems | Advanced Screen and Windows | Advanced DateTime | Advanced Data Text File | Advanced Captcha | Advanced Captcha (V3) | Create Table From Excel (Lite)

 
 
 
 

Advanced Captcha (V3)

   WebSite                         TEST

deathbycaptcha.com       [y]

de-captcher.com             [y]

antigate.com                   [y]

eve.cm                            [y]

humancoder.com            [y]

imagedecoders.com       [n]

beatcaptchas.com          [n]

imagedecoders.com       [n]

imagetyperz.com            [n]

shanibpo.com                [n]

captchabot.com             [n]

ripcaptcha.com              [n]

2captcha.com                [y]

spamvilla.com                [y]

captchatronix.com         [y]

captchasolutions.com    [y]

 

 

Big changes. It can not replace V2 or lower.

*** Some items I have not tested. If you want me to test. Please feel free user account To me. Borrowed temporarily ***

 

 

 

Price Update (04/11/2014)

 

deathbycaptcha.com      1.39$ per 1000 CAPTCHAs

de-captcher.com             2.00$ per 1000 CAPTCHAs

antigate.com                   0.7$ per 1000 CAPTCHAs

eve.cm                            0.5$ per 1000 CAPTCHAs

imagedecoders.com       1.35$ per 1000 CAPTCHAs

beatcaptchas.com          8.00$ per 1000 CAPTCHAs

humancoder.com            1.38$ per 1000 CAPTCHAs

imagedecoders.com       1.35$ per 1000 CAPTCHAs

imagetyperz.com            1.30$ per 1000 CAPTCHAs

shanibpo.com                1.30$ per 1000 CAPTCHAs

captchabot.com             1.00$ per 1000 CAPTCHAs

ripcaptcha.com              1.29$ per 1000 CAPTCHAs

2captcha.com                 0.5$ per 1000 CAPTCHAs

captchasolutions.com     0.99$ per 1000 CAPTCHAs

 

                 Unlimited Captcha

spamvilla.com                 $15 per Month

captchatronix.com           $15.97 per Month

 

 

Download

 

 

 

HELLO I NEED HELP PLEASE

Link to post
Share on other sites
  • 2 weeks later...

2captcha set 100% solve rates in your account

as well it should place a layer over image marking each image with a number.

 

What does it means TJ and how to solve it?

 

It should mark as "No image matching". Right?

Link to post
Share on other sites

I made a couple transparent images for 8 and 9 image captchas that show up in my case.
I count the number of image tiles.  so I know which one to use.

then I use the advanced image merge command so that I can place the layover on it with the numbers.

attached both images here

and inside of 2captcha there is a 100% solve rate setting that you can inquire on with them that will help get better results as well.

 

I write over all google click image captchas now regardless what solver I send it to with these number patterns so that it takes some guess work out of it for them.

post-2492-0-49822900-1465831680_thumb.png

post-2492-0-93403600-1465831684_thumb.png

Link to post
Share on other sites

also would be nice to see www.de-captcher.com

recaptcha v2 api they have available in there site.  Heard they have great solve rates, and they are much cheaper than anyone else.

URL?

Link to post
Share on other sites

Several days ago, I received a lot of questions.
And several requests

Plugin development is delayed
I hope you understand

Link to post
Share on other sites

when everything was working great and smooth..

 

2captcha have to changed their API again.. looking good and easy at first, but it doesn't work at all..

 

already sending the data-sitekey, pageurl, proxy, language, etc etc..

 

and they always respond with "ERROR_CAPTCHA_UNSOLVABLE:)  :)  :) 

 

 ain't that lovely  :wub:  :wub:  :wub:   :wub:

Link to post
Share on other sites

V3.2.6.0

2captcha.com: add option "Recognize ReCAPTCHA Type 4" (New way of solving ReCaptcha V2)

 

Note.

  • Sample file inside.
  • Ask a question about this plugin here.
  • Tomorrow took my grandmother to the doctor. I offline  can not answer any questions.
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...