Jump to content
UBot Underground

Super Dave

Members
  • Content Count

    132
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by Super Dave

  1. For anyone jumping into this I've already completed the main bot that will load blog credentials from a CSV file and loop through them to update each blog attached. We're running into issue with the end of line characters from dsaunier's text editor. For some reason the bot is not recognizing the end of line, and adding the login name from the next blog into the URL of the previous. This is causing the bot to error on initial login and not loop to the next blog. FYI to anyone looking to help, dsaunier is working with fr_FR wordpress blogs as well as English.
  2. Sent you a PM before reading this post. I have a better idea of what you're looking for now and am sure I can make it happen. If you're interested take a look through your PMs and get back to me. Looking forward to it!
  3. I'm running $50 specials through this weekend and am available for maybe 2 or 3 more projects. I can do this and would be glad to discuss more details privately and bang this out for you.
  4. Alright botters thanks for the support! I knocked out 5 projects for you guys this weekend and am open to additional requests starting NOW! I got asked a lot about the "5% chance" line in my OP so let me take a sec to clear all that up... Frankly I'm sorry for needing it up there in the first place - but lets face it, there are people who will try to ruin this fantastic offer with ridiculous requests. As much as I'd like to roll up my sleeves and build you the next google, it's going to cost more than $50 and I'd be doing us both a disservice if I let you expect anything less. Here's to s
  5. Also keep in mind that there will be elements that are difficult to pull off a page all at once. In these cases it might be useful to scrape the surrounding HTML(the easier stuff) then use the write-to-browser feature to spit it back out one at a time. This will let you scrape from within generic elements that otherwise would give you tons of false matches.
  6. I recoded your test file to do what you're looking for.. As I understand it, you want to set 5 random user agents and save the output from your test.php file right? The only thing I need to mention is that all the user agents in your file need to be of the same length or else there's going to be issues with pulling them randomly. The useragent masker works by directly modifying the memory and can only change to a string thats of equal or less length. Does that clear everything up? testbot.ubot
  7. http://superdave2u.com/wp-content/uploads/2011/05/theawesometer_fullpic_artwork.jpg OK Get this: I enjoy working with people who have a value for the skills and experience I bring to the table. I'm looking to build my rep around these boards and create profitable relationships within the industry. I'm not the pump and dump type ;] I specialize in building portable libraries that can be used for multiple projects and most work well together. As an example, I have created a twitter library for a client that includes subs like "create account", or "change profile picture". I'm more that
  8. Twitter has implemented a new system to track users of their web-interface using a combination of javascript, DOM objects, and browser-based localStorage to store user session tokens. Your help exploring this will speed up finding a better solution, but so far it looks like uBot is somewhat powerless against this (kinda, read below). If you want to see this in action, head over to twitter and after logging in do whatever you normally do to clear cookies[link]. You can browse away form twitter, or remain on the page.. as long as ubot is open the twitter session will stick with you. Here's
  9. Select the month like you would any other element, then in the next node use 'send keys field chosen' and when asked to supply a string use the visible month name exactly as it is shown in the dropdown.
  10. Save the cash, get Notepad++ or netbeans if you want a full IDE.
  11. http://ubotstudio.com/forum/index.php?/topic/5674-lets-talk-about-scaling/ Personal confirmation, win server works fine.
  12. Use 'send keys' of the value you want selected.
  13. How about the target site? Have they changed the identifiers you're using in your selectors ?
  14. I suggest instead of saving names directly to a file.. first add it to an %output list then save the list to file on each loop. From what I remember, "Save to file" does not append, it overwrites so each time to try to save your new var you're overwriting the last ones saved.. Keep in mind too that if you do it this way your memory requirements go up with the longer you run it/the size of your %output list.
  15. Here ya go. Take a look around the web for more details on what you can do with javascript. It can run in the 'eval' node, or under actions you have the 'run javascript' node example.shortstring.ubot
  16. Hope this helps.. Updated.Example.ubot
  17. I've use 'send keys field chosen' for certain drop downs and haven't had trouble with them.
  18. With the standard license you'll need to first make sure the page you have loaded has javascript elements so that ubot can use js functions. If you need help with getting a page to load javascript so that this stuff works send me a PM and I'll walk you through a hack for non-js enabled pages.. Let's assume the page has JS loaded already. From there, I'd set #variable = to an eval of : "{1}".substring(0,X); {1} is the ubot filler for your variable you want trimmed, and X is the length you want it trimmed to. Eval tells ubot to 'evaluate' what's in the box. In this case we're telling ubot t
  19. Phatride, Rather than trying to click the button how about using an eval that's set to the same action as that button? I see that once the login image is clicked the page called the check() action. If you put that in an eval, followed by a waitFor it should do the same thing as if you were to click it. If that works for you it should paint a picture that something was wrong with your selects. If that too doesn't work it could be a more serious problem with .NET or another core component. Give it a try and let us know what happens.
  20. What I would do here is set my #password = PageScrape with left bound as "password: " and with a right bound as either $newLine or "<BR>" depending on if these are html or txt emails. That should do it.
  21. Here's how it'll look with spin.. create-acct-wSpin.ubot
  22. Yepp but you'll need an extra step to set the variable somewhere.. In the attached example I set it so that the % which is male/female can be changed based on your preference. create-acct-wGender.ubot
  23. Yeah I never thought about spin for an even 50/50 split, nice.
  24. What I like to do is set a #variable to a random number between 1 and 100.. right under that I have an IF with an evaluate qualifier. If #variable > 50 createAccount(male) else createAccount(female) Works like a charm
  25. You guys might want to take a look at the library I have linked in my signature. It'll get the job done while the developers work on the core implementation.
×
×
  • Create New...