LoWrIdErTJ - BotGuru 904 Posted May 18, 2016 Report Share Posted May 18, 2016 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 questionwithout 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 screenshotof the image as it wont allow it and gives error of missing image (banner) Quote Link to post Share on other sites
pash 504 Posted May 18, 2016 Author Report Share Posted May 18, 2016 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 questionwithout 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 screenshotof the image as it wont allow it and gives error of missing image (banner)You can use either one (banner image or captain text). Quote Link to post Share on other sites
LoWrIdErTJ - BotGuru 904 Posted May 19, 2016 Report Share Posted May 19, 2016 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 cellsor 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 ratesalso found imagetypers and de-captcher has nocaptcha solving as well Quote Link to post Share on other sites
pash 504 Posted May 19, 2016 Author Report Share Posted May 19, 2016 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 cellsor 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 ratesalso found imagetypers and de-captcher has nocaptcha solving as wellOh. 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") Quote Link to post Share on other sites
pash 504 Posted May 25, 2016 Author Report Share Posted May 25, 2016 V3.2.1.02captcha.com: api update (support "click on all images until there are none left") 1 Quote Link to post Share on other sites
pash 504 Posted May 25, 2016 Author Report Share Posted May 25, 2016 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") 1 Quote Link to post Share on other sites
pash 504 Posted May 26, 2016 Author Report Share Posted May 26, 2016 V3.2.2.02captcha.com: add option "Grid Size (Option)"deathbycaptcha.com: update library Quote Link to post Share on other sites
LoWrIdErTJ - BotGuru 904 Posted May 26, 2016 Report Share Posted May 26, 2016 anyway to add de-captcher nocaptcha solving?example 4 on there downloads page and imagetypersnocaptcha recaptcha option thanks in advance. be nice with de-captcha to set our projects as well for the affiliate system. Quote Link to post Share on other sites
pash 504 Posted May 27, 2016 Author Report Share Posted May 27, 2016 V3.2.2.5imagetyperz.com: add option "Recognize ReCAPTCHA","Recognize Confident Captcha","Fun Captcha Roatate Captcha"WarningNo test because i have no credit.Add sample fileSample reCAPTCHA.ubot Quote Link to post Share on other sites
pablo322 1 Posted May 27, 2016 Report Share Posted May 27, 2016 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 TESTdeathbycaptcha.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 CAPTCHAsde-captcher.com 2.00$ per 1000 CAPTCHAsantigate.com 0.7$ per 1000 CAPTCHAseve.cm 0.5$ per 1000 CAPTCHAsimagedecoders.com 1.35$ per 1000 CAPTCHAsbeatcaptchas.com 8.00$ per 1000 CAPTCHAshumancoder.com 1.38$ per 1000 CAPTCHAsimagedecoders.com 1.35$ per 1000 CAPTCHAsimagetyperz.com 1.30$ per 1000 CAPTCHAsshanibpo.com 1.30$ per 1000 CAPTCHAscaptchabot.com 1.00$ per 1000 CAPTCHAsripcaptcha.com 1.29$ per 1000 CAPTCHAs2captcha.com 0.5$ per 1000 CAPTCHAscaptchasolutions.com 0.99$ per 1000 CAPTCHAs Unlimited Captchaspamvilla.com $15 per Monthcaptchatronix.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 TESTdeathbycaptcha.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 CAPTCHAsde-captcher.com 2.00$ per 1000 CAPTCHAsantigate.com 0.7$ per 1000 CAPTCHAseve.cm 0.5$ per 1000 CAPTCHAsimagedecoders.com 1.35$ per 1000 CAPTCHAsbeatcaptchas.com 8.00$ per 1000 CAPTCHAshumancoder.com 1.38$ per 1000 CAPTCHAsimagedecoders.com 1.35$ per 1000 CAPTCHAsimagetyperz.com 1.30$ per 1000 CAPTCHAsshanibpo.com 1.30$ per 1000 CAPTCHAscaptchabot.com 1.00$ per 1000 CAPTCHAsripcaptcha.com 1.29$ per 1000 CAPTCHAs2captcha.com 0.5$ per 1000 CAPTCHAscaptchasolutions.com 0.99$ per 1000 CAPTCHAs Unlimited Captchaspamvilla.com $15 per Monthcaptchatronix.com $15.97 per Month Download HELLO I NEED HELP PLEASE Quote Link to post Share on other sites
LoWrIdErTJ - BotGuru 904 Posted May 27, 2016 Report Share Posted May 27, 2016 cant wait to try it out thanks. any word on the other for de-captcher as they are much cheaper then most. Quote Link to post Share on other sites
lolada 1 Posted June 9, 2016 Report Share Posted June 9, 2016 Any solution for the new recaptcha, that one that u click, it disapears and comes another one? Quote Link to post Share on other sites
jamesfar 15 Posted June 12, 2016 Report Share Posted June 12, 2016 Is it just me or sometimes 2captcha gives very WRONG result like this: http://prntscr.com/bfmgwk Quote Link to post Share on other sites
LoWrIdErTJ - BotGuru 904 Posted June 13, 2016 Report Share Posted June 13, 2016 2captcha set 100% solve rates in your accountas well it should place a layer over image marking each image with a number. Quote Link to post Share on other sites
jamesfar 15 Posted June 13, 2016 Report Share Posted June 13, 2016 2captcha set 100% solve rates in your accountas 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? Quote Link to post Share on other sites
LoWrIdErTJ - BotGuru 904 Posted June 13, 2016 Report Share Posted June 13, 2016 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 hereand 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. Quote Link to post Share on other sites
jamesfar 15 Posted June 17, 2016 Report Share Posted June 17, 2016 Pash 2captcha has new API https://2captcha.com/newapi-recaptcha-en It promises 100% captcha solving for ReCaptcha V2 Quote Link to post Share on other sites
LoWrIdErTJ - BotGuru 904 Posted June 17, 2016 Report Share Posted June 17, 2016 also would be nice to see www.de-captcher.comrecaptcha v2 api they have available in there site. Heard they have great solve rates, and they are much cheaper than anyone else. Quote Link to post Share on other sites
pash 504 Posted June 18, 2016 Author Report Share Posted June 18, 2016 also would be nice to see www.de-captcher.comrecaptcha v2 api they have available in there site. Heard they have great solve rates, and they are much cheaper than anyone else.URL? Quote Link to post Share on other sites
skinnyking 0 Posted June 18, 2016 Report Share Posted June 18, 2016 The download link is dead, I really need this plugin - any chance you could allow downloads again please? Quote Link to post Share on other sites
skinnyking 0 Posted June 18, 2016 Report Share Posted June 18, 2016 I managed to get the download but I only have ubot standard edition and I can't see the examples so I can't figure out how to use this plugin, I'm still new to ubot. Can anybody help? Quote Link to post Share on other sites
pash 504 Posted June 19, 2016 Author Report Share Posted June 19, 2016 Several days ago, I received a lot of questions.And several requestsPlugin development is delayedI hope you understand Quote Link to post Share on other sites
zozo31 10 Posted June 19, 2016 Report Share Posted June 19, 2016 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 Quote Link to post Share on other sites
skinnyking 0 Posted June 19, 2016 Report Share Posted June 19, 2016 Several days ago, I received a lot of questions.And several requests Plugin development is delayedI hope you understandAppreciate your efforts Pash. Quote Link to post Share on other sites
pash 504 Posted June 19, 2016 Author Report Share Posted June 19, 2016 V3.2.6.02captcha.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. Quote Link to post Share on other sites
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.