Jump to content
UBot Underground

Recommended Posts

version 5 crashes, not even usable.

version 4 works inside ubot studio

 

after compiling on version 4, captcha does not work. but it works inside ubot. wtf would cause that.

ui text box("Threads", #times)
ui stat monitor("Completed:", #finished)
ui stat monitor("Failed:", #failed)
ui button("Start") {
    run()
}
ui open file("Message List", #msglist)
define run {
    set(#finished, 0, "Global")
    set(#failed, 0, "Global")
    add list to list(%message, $list from file(#msglist), "Delete", "Global")
    submit()
}
define submit {
    loop(#times) {
        reset account("Any")
        set user agent("Chrome")
        allow flash("No")
        allow popups("No")
        navigate("http://www.xxxxxxxxxxx.com/helpdesk/", "Wait")
        wait for element(<id="captcha">, "", "Appear")
        type text(<full name field>, "{$account data("First Name")} {$account data("Last Name")}", "Standard")
        type text(<phone field>, $rand(2101021000, 9101021000), "Standard")
        type text($element offset(<email field>, 1), $rand(210900000, 210999999), "Standard")
        type text($element offset(<email field>, 0), $account data("Email"), "Standard")
        change dropdown(<name="subject">, "Random - Skip First Choice")
        type text(<rows=8>, $random list item(%message), "Standard")
        mouse over(<innertext="Input this code   ">, "No")
        mouse over(<name="security_code">, "No")
        click(<name="security_code">, "Left Click", "No")
        wait(5)
        type text(<name="security_code">, $solve captcha(<outerhtml=w"<img border=\"0\" id=\"captcha\" src=\"http://www.xxxxxxxxxxx.com/wp-content/themes/xxxxxxxxxxx/captcha/image.php?x=*&tempfile=*\" alt=\"\">">), "Standard")
        wait(28)
        click(<image="___IMAGE___1___IMAGE___">, "Left Click", "No")
        wait(10)
        if($search page("Submitted")) {
            then {
                increment(#finished)
            }
            else {
                increment(#failed)
            }
        }
        clear cookies
    }
}

Edited by darknode
Link to post
Share on other sites

I can manually click / run node down the line and everything works, but the moment it's run automatically inside a new window node, the captcha fails, but i noticed in the main window it still places the captcha, but the new window it puts nothing. weird.

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