Jump to content
UBot Underground

How Do I Solve Captcha That Has A Link To Answer Them?


Recommended Posts

If you have a link to an example I might be able to help out. You would need to send the captcha out and if its correct you can probably look at the innertext of each link to try and click it.

Link to post
Share on other sites

Hi

 I got this captcha (see attach).

Does anyone know if ubot can solve this? If so, how?

I've tried many that I could think of but nothing.

 

Hi botoballs, 

 

I reckognize that captcha ;)

 

It is quite simple to achieve, 

 

1 - Send the captcha image to be solved as normal

2 - Save the answer as a variable

3 - Scrape the answers that are underneath to a list 

4 - Use the "$change text casing" function to change all characters in the list into either all CAPS or all lower case (doesnt matter which)

5 - Use the same "$change text casing" to convert the captcha answer into all CAPS or lower case (same to match above)

6 - Then use some "if" statements to simply have your bot compare the answer variable with the list and click the matching answer 

 

 

 

Hope that helps ;)

cүвεя_נυηкιε
Link to post
Share on other sites

If you have a link to an example I might be able to help out. You would need to send the captcha out and if its correct you can probably look at the innertext of each link to try and click it.

I'll pm you the link but it does need a login so an account is needed and waiting for about 25 sites to load so thats about 5 minutes of your time to see the captcha.

 

 

Hi botoballs, 

 

I reckognize that captcha ;)

 

It is quite simple to achieve, 

 

1 - Send the captcha image to be solved as normal

2 - Save the answer as a variable

3 - Scrape the answers that are underneath to a list 

4 - Use the "$change text casing" function to change all characters in the list into either all CAPS or all lower case (doesnt matter which)

5 - Use the same "$change text casing" to convert the captcha answer into all CAPS or lower case (same to match above)

6 - Then use some "if" statements to simply have your bot compare the answer variable with the list and click the matching answer 

 

 

 

Hope that helps ;)

cүвεя_נυηкιε

 

 

Hi I've tried it but I don't quite understand it.

Will send you pm where the captcha is.

Link to post
Share on other sites

"2 - Save the answer as a variable"

 

How to save ?

 

Use the "Set" command to set a variable. The answer will be "saved" as a variable that you can use later on when you want to compare it against the provided options.

Link to post
Share on other sites

Well the captcha is not always correct. If captcha looks at aBcdE it sometimes solve as aBCdE but the link has to be exact aBcdE.

I'm still working on this but very difficult.

Link to post
Share on other sites

Well the captcha is not always correct. If captcha looks at aBcdE it sometimes solve as aBCdE but the link has to be exact aBcdE.

I'm still working on this but very difficult.

 

 

Sorry mate, completely forgot, 

i found the bot i use, here is the code to solve the captcha :

 

Plugins Used : Advanced Shell (9th line down) but you can do with normal "delete file"

 

 

clear list(%caps)

add list to list(%caps,$scrape attribute(<target="_self">,"innertext"),"Delete","Global")

set(#cap1,$change text casing($list item(%caps,0),"Lower Case"),"Global")

set(#cap2,$change text casing($list item(%caps,1),"Lower Case"),"Global")

set(#cap3,$change text casing($list item(%caps,2),"Lower Case"),"Global")

set(#cap4,$change text casing($list item(%caps,3),"Lower Case"),"Global")

set(#cap5,$change text casing($list item(%caps,4),"Lower Case"),"Global")

set(#cap6,$change text casing($list item(%caps,5),"Lower Case"),"Global")

plugin command("Advanced Shell.dll""delete file permanently""{$special folder("My Documents")}\\TrafAd_Data\\solve.txt")

set(#captcha,$nothing,"Global")

clear list(%solve)

save to file("{$special folder("My Documents")}\\TrafAd_Data\\solve.txt",$solve captcha(<id="captcha">))

add item to list(%solve,$read file("{$special folder("My Documents")}\\TrafAd_Data\\solve.txt"),"Delete","Global")

set(#captcha,$change text casing($list from text($read file("{$special folder("My Documents")}\\TrafAd_Data\\solve.txt"),""),"Lower Case"),"Global")

if($contains($change text casing(#cap1,"Lower Case"),#captcha)) {

    then {

        click(<innertext=$list item(%caps,0)>,"Left Click","No")

    }

    else {

        if($contains($change text casing(#cap2,"Lower Case"),#captcha)) {

            then {

                click(<innertext=$list item(%caps,1)>,"Left Click","No")

            }

            else {

                if($contains($change text casing(#cap3,"Lower Case"),#captcha)) {

                    then {

                        click(<innertext=$list item(%caps,2)>,"Left Click","No")

                    }

                    else {

                        if($contains($change text casing(#cap4,"Lower Case"),#captcha)) {

                            then {

                                click(<innertext=$list item(%caps,3)>,"Left Click","No")

                            }

                            else {

                                if($contains($change text casing(#cap5,"Lower Case"),#captcha)) {

                                    then {

                                        click(<innertext=$list item(%caps,4)>,"Left Click","No")

                                    }

                                    else {

                                        if($contains($change text casing(#cap6,"Lower Case"),#captcha)) {

                                            then {

                                                click(<innertext=$list item(%caps,5)>,"Left Click","No")

                                            }

                                            else {

                                                click(<innertext=#captcha>,"Left Click","No")

                                            }

                                        }

                                    }

                                }

                            }

                        }

                    }

                }

            }

        }

    }

}

 

 

 

That should do the trick :)

 

Hey it feels nice to give back for once :)

 

CJ

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