Jump to content
UBot Underground

Bob The Builder

Fellow UBotter
  • Content Count

    665
  • Joined

  • Last visited

  • Days Won

    9

Posts posted by Bob The Builder

  1. I always experience ubotbrowser crashes to a point where my bots become unusable. There are many people who have problems with the ubotbrowser crashing, and alot of it seems to be point towards proxies. I also tried adding in a timeout after changing the proxy, but it doesn't seem to help much.

     

    for the meantime, you could try a vpn service.

     

    Proxies and threads are broken still and just end up causing browser crashes.

  2. Botsource will have the ability to accept new code from members in the near future. Right now you cannot.

     

    John

     

    I hope when "library" support is added (and hopefully, this is not the extent of libraries as I want my private ones) it can be done in a similar fashion.

    I like the grouped functionality and encapsulation.

  3. This all sounds very... Ok?

     

    I will post mine in another thread when it's completed..

     

    1.) User enters PayPal transaction ID in Tools->Licensing

    2.) Bot uses RegEx to encode transaction ID...

    1={sdf|43d|SD3|mb9}

    2={856|dd2|95b|d8w}

    etc..

     

    3.) Bot uses Shell to gather the hardware ID for the computer

    (cmd, ipconfig/all, $find regex(?<=physical address.+:\s))

     

    4.) Bot encodes physical address into the same RegEx code.

    5.) Bot writes #TransactionID & #PhysADD to new text file. %APP%\license.txt

     

    On program start...

     

    1.) Bot checks for the existence of license.txt, if it exists, it decodes the RegEx.

    2.) The bot decodes the RegEx. Returning the Transaction ID and Physical Address.

    3.) The bot checks for the existence of a matching code at my website. site.com/license.txt?ref=TRANSID

    4.) The bot gathers the physical address again and makes sure it matches the one in the file. :)

     

    Best part is... Neither code matches, the codes are basically spintax. So the one in the license.txt doesn't even exist on my website.. If they did find the file with all the codes, they couldn't CTRL-F their code. If they share with a friend, the address won't match. Plus, I'll see their transaction ID requesting license information from multiple IP addresses.

     

    If any of these conditions are untrue... Set loop limit to 5 and navigate,salespage,wait. ;)

     

    I created one a bot that downloads from a specific location a tool I wrote in C# to get the hard drive serial number and motherboard serial number, then deletes the file. I ended up getting Protect Gold, but it really isn't polished and I don't like how you have to make so many copies of everything.

  4.  

    I understand your frustration Bob, but this problem has a solution, and if multithreading works using 5 threads maybe we should use it that way until it gets fixed.

     

    I don't think that helps anyone a negative approach.

     

    Negative approach? I spent countless hours and been waiting two months now and it still does not work. Silence never fixes anything and without stable multi-threading and stable compiling I can't even use the product for what I bought it for.

     

    It is not a negative approach, it is just a fact.

  5. Hi Seonid,

     

    Thank you for the feedback!

     

    I know the troubleshooting must have taken you some time, but I still do not see a solution to my orgional problem.

     

    1) When I run the bot multithreadOK.ubot the same value (list item) appear in each new window.

    2) There is no funcionalty that will allow me to cycle through the list more then once.

     

    The bot from post #27 ( reattached below) was the exact bot I am trying to use with all the functionalty I want except for the multithread and ui to control it. The ui labeled "cycles" in the bot attached below is the number of times I want to cycle though the list not the amount of threads.

     

    multithreadbot.ubot

    usernames.txt

     

    Just to clarify - Is the multithread functionality on ubot not working or am I implementing it incorrectly or both? I am getting mixed feedback.

     

    I had no idea this would be so problematic.

     

    Thanks again all.

     

    -Eric

     

    As far as I have seen and I spent many many hours wasted on this over 2 months of trying, multi-threading does not work reliably in ubot. Not when using in new browser, they lock up constantly. I have managed to do multiple threads using 5 threads but after that it locks browsers left and right.

     

    I've tried working with Eddie on it many times but it is still doing it and there is no fix currently. I believe Eddie found an in new browser bug but not sure if it is related to this.

  6. Hi Guys

     

    I have created a large list of user agents

    The one file scraped by my bot was about 8900.

    I then ran a test to work on swapping the user agent

     

    ui open file("Mobile useragents: ", #MobileUserAgentList)

    ui open file("Browser user agents:", #BrowserUserAgentList)

    add list to list(%CurrentUserAgentList, $list from text(#BrowserUserAgentList, $new line), "Delete", "Global")

    set user agent($random list item(%CurrentUserAgentList))

    navigate("http://show-ip.net/browserinfo/", "Wait")

     

    As soon as we get to

    set user agent($random list item(%CurrentUserAgentList))

     

    The bot seems to take ages - it does not hang but just does not proceed.

     

    I wanted to see how quick the random functions works on large lists.

     

    Is there something wrong with the code or cant ubot handle such large lists?

     

    I have attached the user agent files if anyone is looking for user agent lists.

     

    Thanks for any feedback

    do a search I made a snippet that works well for this but much smaller list.

  7. Can you add some complexity to the Account Data: Password?

    Right now it just returns 10 upper case alpha characters. Many sites require at least one number and sometimes even symbols.

     

    Being able to mix the case, add number(s), symbols, and vary the length would go a long way in allowing it to be used on more sites without problems.

     

    I know there are a few work arounds, but would be nice to use this feature consistently.

  8. Actually, I'm trying to learn how to do it with regex because with $trim you can't specify between left and right trim and I'd like to know how to do this... as well as using regex in a set command for a hundred other regular expressions that aren't hotlisted... yet... http://ubotstudio.com/forum/public/style_emoticons/default/wink.gif

     

    Here ya go, this should help:

     

    set(#text, " the cow and the dog ", "Global")

    set(#trimleft, $replace regular expression(#text, "^\\s+", ""), "Global")

    set(#trimright, $replace regular expression(#text, "\\s+$", ""), "Global")

    set(#trimboth, $replace regular expression(#text, "^\\s+|\\s+$", ""), "Global")

    • Like 1
  9. I'm still trying to wrap my head around using simple regex in v.4... for example if I want to trim the white space from the left side or right side (or both) only of a variable what do I need to do to this code to make it work?

     

    ui text box("Text to Trim", #test)

    ui button("Trim Left") {

    set(#test, $replace regular expression(#test, "/^\\s+/, \'\'", $nothing), "Global")

    }

    ui button("Trim Right") {

    set(#test, $replace regular expression(#test, "/\\s+$/, \'\'", $nothing), "Global")

    }

    ui button("Trim All") {

    set(#test, $replace regular expression(#test, "/^\\s+|\\s+$/g, \'\'", $nothing), "Global")

    }

     

    just use $trim

  10. Good idea except with the exception of the following text: Returning Visitors - Welcome Back!

    Please enter your email address to continue.

     

    Everything on the page is a image.

     

    You can use the image filename if it is very unique.

    You can programmatically enter a bogus email to continue to something more unique if possible.

    It is likely Google indexed stuff behind it that you can use to find it.

    Would have to see it, but there is probably a way.

     

     

  11. How can I discover other pages of a replicated website?

     

    I'm referring to websites used by MLM companys, where each user is given a webpage that is identical to the others... except that the members picture and email are displayed on their page. I am trying to create a bot that will visit the various pages a grab specific data.

     

    I know how to scrape a page, I am just stumped as to how I should go about discovering the other self replicated pages. Any ideas?

     

    Google search using something extremely unique to that page that isn't likely to be changed on a site by site basis?

×
×
  • Create New...