Jump to content
UBot Underground

1 bot opens multiple browsers?


Recommended Posts

ui text box("Number of browsers?", #browsers)
ui open file("Proxies", #uproxies)
ui open file("Topics", #utopics)
ui open file("Response1", #uresponse1)
ui open file("Response2", #uresponse2)
ui open file("Response3", #uresponse3)
ui open file("Wait1", #uwait1)
ui open file("wait2", #uwait2)
ui open file("wait3", #uwait3)
set(#chats, 0, "Global")
loop(#browsers) {
    thread {
        loop(9999) {
            in new browser {
                add list to list(%proxies, $list from file(#uproxies), "Don\'t Delete", "Global")
                add list to list(%topics, $list from file(#utopics), "Don\'t Delete", "Global")
                add list to list(%response1, $list from file(#uresponse1), "Don\'t Delete", "Global")
                add list to list(%response2, $list from file(#uresponse2), "Don\'t Delete", "Global")
                add list to list(%response3, $list from file(#uresponse3), "Don\'t Delete", "Global")
                add list to list(%wait1, $list from file(#uwait1), "Don\'t Delete", "Global")
                add list to list(%wait2, $list from file(#uwait2), "Don\'t Delete", "Global")
                add list to list(%wait3, $list from file(#uwait3), "Don\'t Delete", "Global")
                set(#current proxy, $random list item(%proxies), "Global")
                set(#current interest, $random list item(%topics), "Global")
                set(#response1, $random list item(%response1), "Global")
                set(#response2, $random list item(%response2), "Global")
                set(#response3, $random list item(%response3), "Global")
                set(#wait1, $random list item(%wait1), "Global")
                set(#wait2, $random list item(%wait2), "Global")
                set(#wait3, $random list item(%wait3), "Global")
                change proxy(#current proxy)
                allow images("No")
                allow css("No")
                allow popups("No")
                allow javascript("Yes")
                allow flash("No")
                set visibility("Invisible")
                set user agent("Safari")
                navigate("http://www.website.com/", "Wait")
                wait(5)
                wait for element(<class="topicplaceholder">, "", "Appear")
                type text(<class="topicplaceholder">, #current topics, "Standard")
                clear list(%topics)
                wait(5)
                click(<id="btn">, "Left Click", "No")
                wait for element(<innertext="element">, 30, "Appear")
                type text(<class="chatmsg ">, #response1, "Standard")
                wait(#wait1)
                click(<class="btn">, "Left Click", "No")
                type text(<class="yes ">, #response2, "Standard")
                clear list(%response2)
                wait(#wait2)
                click(<class="btn">, "Left Click", "No")
                type text(<class="yes ">, #response3, "Standard")
                wait(#wait3)
                click(<class="btn">, "Left Click", "No")
                clear cookies
                shell("cmd.exe /c rmdir /s /q \"%APPDATA%\\Macromedia\\Flash Player\\#SharedObjects\\\"")
                wait(5)
                close page
                increment(#runs)
            }
        }
    }
    wait(60)
}
ui stat monitor("Current Proxy", #current proxy)
ui stat monitor("Number of runs", #runs)
 

 

I had to change some stuff as to not give away what im doing, but this is the logic of it. Before I made this post I wasn't using the new browser function, but I am now because supposedly that stops browser.exe crashes. Also, now with the multithreading up, I am getting about 8 browser.exe in my task manager.

Link to post
Share on other sites

I can't find a thread with the search function on this. When I open my ubot which is 1 fairly simple loop, 4 browsers open up. Is this suppose to happen?

In a word yes, one will be your for UI area, one for the browser and so on, just because it says Browser.exe in your task manager doesn’t mean it is a Browser that it's running it could be any processes within ubot all are named Browser.exe.

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