Jump to content
UBot Underground

dipswitch

Members
  • Content Count

    15
  • Joined

  • Last visited

Posts posted by dipswitch

  1. Hey everyone,

     

    I have a question relating to how Ubot handles clearing cookies and .sol flash cookies. In my bot, I'm using a multi-threaded approach to login to a list of accounts and perform instructions that deal with flash cookies. These accounts use their own proxies as well. My question is, if I tell Ubot to clear cookies and delete .sol cookies (using a script I made) before any account logs in, once accounts start logging in and navigate to pages with flash cookies, will they be effected by on-going .sol cookies being stored onto the computer from other accounts? The process that I'm concerned about is when accounts log in using multiple threads, the website will see cookies from another account and report it. How can I make it so that each thread is independent of the cookies being stored from other threads on the computer? I am deleting cookies and flash cookies at the beginning of each login but I won't be able to delete any cookies during the command process or else I will be logged out. I hope I'm making myself clear, if not let me know. Thanks for your time.

     

    Best regards,

     

    dipswitch

  2. Hey guys, I'm looking into building a botting machine that I hope will be able to run 24/7. My bot is set to run in an infinite loop so I want to make sure that there will be no shortcomings that will hinder its process. What do you guys recommend? For memory, I'm thinking at least 12 gigs. I need it to handle around 10-20 threads and a lot of scraping. Thanks for your time.

  3. Hey everyone,

     

    I'm been trying to create this for the past couple of days and didn't get anywhere. I tried TJ's script but couldn't get it working. I'm trying to create a script that cycles through an accounts file and have them run in separate threads. The problem with my current script is that if I run 2 threads, it checks the first account on those two threads instead of checking two separate account on those 2 threads. Could somebody please help me? Here's my code:

    ui open file("Accounts", #login)
    clear table(&login)
    create table from file(#login, &login)
    set(#account position, 0, "Global")
    ui drop down("Thread Count", "1,2,3,4,5,6,7,8,9,10", #num threads)
    set(#num created, 0, "Global")
    set(#used threads, 0, "Global")
    loop($table total rows(&login)) {
        loop while($comparison(#used threads, ">=", #num threads)) {
            wait(1)
        }
        loop process()
    }
    define loop process {
        increment(#used threads)
        increment(#num created)
        registration procedure()
    }
    define registration procedure {
        thread {
            in new browser {
                registration code here()
                decrement(#used threads)
            }
        }
    }
    define registration code here {
        if($comparison(#num created, "<=", $table total rows(&login))) {
            then {
                navigate("http://youtube.com", "Wait")
                wait(5)
                click(<login button>, "Left Click", "No")
                wait(3)
                type text(<email field>, $table cell(&login, #account position, 0), "Standard")
                type text(<password field>, $table cell(&login, #account position, 1), "Standard")
                click(<login button>, "Left Click", "No")
                wait(5)
                increment(#account position)
            }
            else {
            }
        }
    }
    
    
  4.  

    I am also getting a boost error!

    ---------------------------
    Microsoft Visual C++ Runtime Library
    ---------------------------
    Assertion failed!
     
    Program: ...
    File: C:\boost\boost\boost/smart_ptr/shared_ptr.hpp
    Line: 653
     
    Expression: px != 0
     
    For information on how your program can cause an assertion
    failure, see the Visual C++ documentation on asserts
     
    (Press Retry to debug the application - JIT must be enabled)
    ---------------------------
    Abort   Retry   Ignore  

    I am also getting this when trying to run threads.

  5. Hi,

     

    I'm writing a bot that if it reaches a certain url which contains a part of the url which I load in the $contain function, to pause the bot and wait on my input. The problem is that the when the bot reaches this circumstance, it does not pause. Could someone help me out? This is what I have so far:

    if($contains($url, "https://accounts.google.com/b/0/PlusPageSignUpIdvChallenge")) {
        then {
            pause script
        }
        else {
        }
    }
    
×
×
  • Create New...