Jump to content
UBot Underground

Can't Click A Blocked Button (Ubot 5.9.43)


Recommended Posts

I try to send a message to a website using ubot, but then appears a captcha like this, i try to solve it with the ultimate captcha plugin, that fills letters in a rtextbox that appears under the captcha, and then clicking the submit button  should be enough to bipass. The problem is that the button appears blocked like in this screenshot (solving the captcha manually would unblock the field, after a green thick appears in the captcha box)
 
post-29372-0-81133900-1488721404_thumb.png

 

what should i do to bipass that?

i tried to scrape the code of the send button. This is the code in the are around this button:

 

<innerhtml=w"  <input class=\\\"btnBig disabled\\\" tabindex=\\\"3\\\" id=\\\"send_pm\\\" type=\\\"submit\\\" title=\\\"Ctrl+Enter\\\" value=\\\"Send\\\" disabled=\\\"disabled\\\">
                                        <input class=\"btnBig disabled\" tabindex=\"3\" id=\"send_pm\" type=\"submit\" title=\"Ctrl+Enter\" value=\"Send\" disabled=\"disabled\">
                                                                <input class=\"btnBig disabled\" id=\"call_btn\" type=\"button\" value=\"Video call\" disabled=\"disabled\">
                        <span id=\"video_call_hint\" hint=\"User \'DesertRat42\' isn\'t in chat window now\" class=\"iconL iconHintSmall\"></span>
                        <div id=\"call_loader\" style=\"display:none;\">
                            <img src=\"https://static-ec.xhcdn.com/images/tpl2/ajax-loader.s.gif\">
                            <div>Calling for video chat</div>
                        </div>
                                                                                                ">

 

 

 

But i did not manage to click nothing, should i add a click code in particular to click it?

 

Alternatively, I would like to know, if there is a way to force the captcha to get validated and disappear instead of having to click the submit button once the textbox under the captcha is filled with the text that allows it to be bypassed.

post-29372-0-81133900-1488721404_thumb.png

Link to post
Share on other sites

 

I try to send a message to a website using ubot, but then appears a captcha like this, i try to solve it with the ultimate captcha plugin, that fills letters in a rtextbox that appears under the captcha, and then clicking the submit button  should be enough to bipass. The problem is that the button appears blocked like in this screenshot (solving the captcha manually would unblock the field, after a green thick appears in the captcha box)
 
 

 

what should i do to bipass that?

i tried to scrape the code of the send button. This is the code in the are around this button:

 

<innerhtml=w"  <input class=\\\"btnBig disabled\\\" tabindex=\\\"3\\\" id=\\\"send_pm\\\" type=\\\"submit\\\" title=\\\"Ctrl+Enter\\\" value=\\\"Send\\\" disabled=\\\"disabled\\\">

                                        <input class=\"btnBig disabled\" tabindex=\"3\" id=\"send_pm\" type=\"submit\" title=\"Ctrl+Enter\" value=\"Send\" disabled=\"disabled\">

                                                                <input class=\"btnBig disabled\" id=\"call_btn\" type=\"button\" value=\"Video call\" disabled=\"disabled\">

                        <span id=\"video_call_hint\" hint=\"User \'DesertRat42\' isn\'t in chat window now\" class=\"iconL iconHintSmall\"></span>

                        <div id=\"call_loader\" style=\"display:none;\">

                            <img src=\"https://static-ec.xhcdn.com/images/tpl2/ajax-loader.s.gif\">

                            <div>Calling for video chat</div>

                        </div>

                                                                                                ">

 

 

 

But i did not manage to click nothing, should i add a click code in particular to click it?

 

Alternatively, I would like to know, if there is a way to force the captcha to get validated and disappear instead of having to click the submit button once the textbox under the captcha is filled with the text that allows it to be bypassed.

 

 

 

You can try this javascript to enable the submit button after solving the recaptcha and text box filled with recaptcha response

run javascript("document.getElementById(\"send_pm\").removeAttribute(\"disabled\");")

Hope this helps

Link to post
Share on other sites

You can try this javascript to enable the submit button after solving the recaptcha and text box filled with recaptcha response

run javascript("document.getElementById(\"send_pm\").removeAttribute(\"disabled\");")

Hope this helps

It does not work, the button continues blocked

Link to post
Share on other sites

update: It seems they used a tutoruial like that to block the button: http://stackoverflow.com/questions/30018213/recaptcha-2-0-enable-submit-button-on-callback-if-recaptcha-successful

 

i tried to run this javascript code:

function enableBtn(){
document.getElementById("button1").disabled = false;
}

but it did not make a change,

 

may it be the javascripts are not working?

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