Jump to content
UBot Underground

[FREE Plugin] Advanced Captcha (V3)


Recommended 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 months you did not hear much from me anymore. This has some reasons:

Because of inevitable personal and health reasons I am no longer able to sell and provide plugins or to work on the code anymore. The license servers run out of payment in the end. Sorry for the inconvenience.

My plugins (Ubotplugin.com) have reached the products end of life cycle with me now.

Ubotplugin.com will become Automaxed.com

Simon (PRO) from Automaxed.com is working to get the plugins online and working again in the next days and weeks. We made an agreement so that Ubotplugin will not have to go. They will do their best to get them going and maintained for the future.

The plugins should be available again through Automaxed, but I am no longer involved. I really need to care about my health now. I also can no longer answer support questions.

Further updates on the progress will be announced as soon as possible.

Thanks for your understanding.

 

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

  • Like 10
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

Sample set delay if get error

loop(1000) {
    load html($GetCaptcha("user", "pass", "{$special folder("Desktop")}\\testCaptcha2.jpg"))
}
define $GetCaptcha(#user, #pass, #imagePath) {
    set(#process, $true, "Local")
    loop while(#process) {
        set(#captcha, $plugin function("Advanced Captcha.dll", "$spamvilla.com", #user, #pass, #imagePath, "", "Recognize"), "Local")
        if($contains(#captcha, "ERROR")) {
            then {
                wait(15)
            }
            else {
                set(#process, $false, "Local")
            }
        }
    }
    return($replace regular expression(#captcha, ".*\\|", ""))
}
  • Like 1
Link to post
Share on other sites
  • 3 weeks later...

Awesome plugin man, 

 

I'm integrating all the tested Captcha Services and was wondering if the community can help me out. 

If you use on the services can you PM me or Post here with the respond code of the captcha plugin. (Some are different then others and can't sign-up/use them all)

DeathbyCaptcha (Completed) 
Respond Code: 
1349698|said aeedio
ID|Dialog

De-Captcher (Needed)
Antigate (Needed)
Eve (Needed)
Humancoder (Needed)

2Captcha (Needed)
Spamvilla (Needed)
 
Regards,
HaHaItsJake
Link to post
Share on other sites

 

Awesome plugin man, 

 

I'm integrating all the tested Captcha Services and was wondering if the community can help me out. 

 

If you use on the services can you PM me or Post here with the respond code of the captcha plugin. (Some are different then others and can't sign-up/use them all)

 

DeathbyCaptcha (Completed) 

Respond Code: 

1349698|said aeedio

ID|Dialog

 

De-Captcher (Needed)

Antigate (Needed)

Eve (Needed)

Humancoder (Needed)

2Captcha (Needed)
Spamvilla (Needed)
 
Regards,

HaHaItsJake

 

 

I use the same information for the response of Captcha Services Api.

For users to apply different.

For different, you have to use regular expression to filter the information you need.

Or use the command "splite" plug-in "Advanced Data Text File" to extract the data.

Or command "find index (regex)" plug-in "Advanced Data Text File".

 

But I can not remember the number Captcha Services with different information.

Link to post
Share on other sites

regular expression to filter the information you need

Yes, that is why I need the layout to determine how to split the information if the captcha was incorrect to know how to pull the ID needed to send back to the Captcha service in use. I only have DeathbyCaptcha. 

Also, when reporting failed captcha, do you need to send the Image with that? Or just the Captcha ID? 

 

Regards,

HaHaItsJake

Link to post
Share on other sites

Yes, that is why I need the layout to determine how to split the information if the captcha was incorrect to know how to pull the ID needed to send back to the Captcha service in use. I only have DeathbyCaptcha. 

Also, when reporting failed captcha, do you need to send the Image with that? Or just the Captcha ID? 

 

Regards,

HaHaItsJake

comment("Test")
ui text box("Username",#username)
ui text box("Password",#password)
set(#rawCaptcha,$plugin function("Advanced Captcha.dll", "$deathbycaptcha.com", #username, #password, "{$special folder("Application")}\\testCaptcha2.jpg", "", "Recognize"),"Global")
load html(#rawCaptcha)
set(#captchaText,$replace regular expression(#rawCaptcha,".*?\\|",""),"Global")
set(#captchaId,$replace regular expression(#rawCaptcha,"\\|.*",""),"Global")
stop script
comment("Report Bad")
set(#rawCaptcha,$plugin function("Advanced Captcha.dll", "$deathbycaptcha.com", #username, #password, "", #captchaId, "Report Bad"),"Global")
comment("Work both

set(#rawCaptcha,$plugin function(\"Advanced Captcha.dll\", \"$deathbycaptcha.com\", #username, #password, \"\{$special folder(\"Application\")\}\\\\testCaptcha2.jpg\", #captchaId, \"Report Bad\"),\"Global\")")
Link to post
Share on other sites
  • 1 month later...

I did not change the information received from the Server Captcha.

You can convert its value. I have recommend you

Link to post
Share on other sites

I did not change the information received from the Server Captcha.

You can convert its value. I have recommend you

 

The workaround you sent from the other thread will not work on this one.

It's convenient if the plugin can convert it automatically.

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

Pash,

 

I'm a bit confused by the de-captcher one.

 

When do I use Captcha ID for report?

0|107|44685|0|0|n7hjks
ResultCode|MajorID|MinorID|Type|Timeout|Text
 
Is there a way to only get the Text when I run it in Recognize Mode?
 
Thanks
Dan
Link to post
Share on other sites

 

Pash,

 

I'm a bit confused by the de-captcher one.

 

When do I use Captcha ID for report?

0|107|44685|0|0|n7hjks
ResultCode|MajorID|MinorID|Type|Timeout|Text
 
Is there a way to only get the Text when I run it in Recognize Mode?
 
Thanks
Dan

 

this plugin return raw data from captcha server

if you want get some data please use REGEX

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