Jump to content
UBot Underground

Denethor

Members
  • Content Count

    48
  • Joined

  • Last visited

Everything posted by Denethor

  1. I missed a few updates as I had not been making bots. Downloaded the newest version from link you sent me in email (2.5.3) Now my old bots don't work because "HTTP Post" has been moved from a command to a parameter... A parameter of what? there were no new examples in the update just a DLL I have a few very simple scripts like poll voters that simply visit a page, scrub it for the data it needs to submit and "used" to just do a post command like this: plugin command("HTTP post.dll", "HTTP POST", #serverlink, #postData, #UserAgent, #referrer, #ret) Ubot loads the script in code view with a
  2. I made a parser that sort of works, but for some reason the table that contains 5000+ emails only finds about 300 links to click even though all 5000+ contain the link and passes my regex on all random ones I test. Then there is the fact that you have no way to delete the email once its processed, because you downloaded all of them at once in a table. How do you know what email to go back and delete and how do you delete it? Seems I paid good money for a lot of features that don't work. Everything I try is don't use the built in feature, write an entire script to handle it correctly.
  3. New to ubot, so be gentle I made a script to test our website sign up process. Our server sends an email with a verification link in it, its a random key tacked on to the end of the url. All the test users go to a catchall mailbox on Gmail, if that matters at all. I used the "Connect to mail server" command (which connects to gmail successfully) inside of that I put the "verify emails" command. The wizard opens and displays the emails, I pick the subject line and link to click. Replaced the random part with * Run the node as a whole and it does nothing for a long time (over 5 min) then either
  4. Does the reddit account builder solve the CAPTCHA?
  5. Anyone else have an issue with version 5 compiled scripts? I can compile my script in old version 4 and it runs on any machine I copy it to. Since upgrading to version 5 if I compile the same script it will not run on any machine unless I first install the version 5 editor. The compiled script loads in to memory but never actually executes. Makes it impossible to give out the complied scripts if they don't run.
  6. Ok so I figured out how to scrape the page and get the real elements I need instead of using the other elements around it (i extract the random numbers generated on page load in to a list, then use the list # of the answer i want as the html element) Now the script runs perfect ONE PASS. No amount of built in cookie cleaning does the trick, but closing ubot and re opening it, clears what ever was stored and I can run one loop again. How do I clear ALL cookies and other files it may set?
  7. After more testing and trying various input methods, it still is doing the repeating, what I have noticed is it always repeats 7 times, regardless of the length of the text entered I don't have any loop in my code, so it can't be my code doing it. You can just the one node pasted above and it will fill in the text seven times as above. If i change the answer to "A" it types "AAAAAAA"
  8. I am trying to fill in a survey hosted by SurveyMonkey. They do some some slightly tricky things to try and bot bust. I have figured out all the round about methods of getting to the fileds I need via other elements since the actual element names are random generated every page load. My problem lies on text input fields. Ubot fills in the correct field but the text is just repeated over and over until it fills the input box. So the example below should write the text 'Answer to question 2' in the box for question#2 type text(<after=3>, "Answer to question 2", "Standard") But what
  9. So I purchased the HTTP post plugin above and I'm sure I'll use it for other stuff in the future, but I don't think it was required for this. They have a command line tool I could have called straight from ubot for free. The HTTP Post method works but then I'm not using the captcha functionality built in to ubot at all, I have to save the image and send it to DBC, seems that's already built in to ubot though so why recreate the wheel? There is no way using the built in support for DBC to report the bad ones? I smell a feature request...
  10. Funny I was just about to post, how do check if something exists? I see how to pause until something exists, but not a "IF Element Exists"
  11. Thank you, i'll look into it, I thought maybe since ubot had the cap stuff built in I was missing a built in error handler.
  12. How do you report back to DeathByCaptcha if the answer is wrong? They claim they will only charge you for successful ones, but the software needs to support telling their API it failed. Anyone know how to tell them it was solved bad?
  13. How do you report back to DeathByCaptcha if the answer is wrong? They claim they will only charge you for successful ones, but the software needs to support telling their API it failed. Anyone know how to tell them it was solved bad?
  14. This seemed to work : set(#i, 0, "Global")loop($list total(%City)) { if($list item(%City, #i) = "" OR $list item(%City, #i) = " ") { then { remove from list(%City, #i) } else { increment(#i) } }}
  15. OK, list to list with embedded list from table works correctly, thank you. Now that i have the import from table correct is there a way to remove empty items from the lists? I'm importing each row of data in to a list so that I can use the random list item function to populate form data. The issue now is that not all rows have same amount of data, some have 3 columns of data, some 4, some 5. This makes some lists contain blank entries that I assume will be included in the random selection of items in that list. Can I say remove blank items from list?
  16. I'll try using the list to list method, I've been assuming the add item to list was the correct beginning. maybe ubot needs to add add item(s) as a command so it can add more than just one item.
  17. http://www.flickr.com/photos/87714511@N08/9568768549/
  18. No I was correct that does not work either: clear table(&AllAnswers)create table from file("C:\\Documents and Settings\\Administrator\\Desktop\\Answers.csv", &AllAnswers)clear list(%City)add item to list(%City, $list from text($plugin function("TableCommands.dll", "$list from table", &AllAnswers, "Row", 0), ","), "Delete", "Global")
  19. Actually I just tried your example and no that doesn't work either. same result. %test 1 item (0) data1 data2 data3 It should make a list of separate items like this: %test 3 items (0) data1 (1) data2 (2) data3 I missed the embed the row read, it might work after all, but that seems a silly step, I can't think of a use of where I would a list item to contain a concatenation of table cells or file lines. If you use that list variable it spits out data1data2data3 all strung tog
  20. OK, that works on the second example but still does not fix the original issue of list from table. And I assumed ,incorrectly i guess, that all the functions worked off of csv files since the tables were that format and the import from text worked that way(string of text with a delimiter). On the original "List from Table" The table is imported correctly 26 rows of five columns of data. turning a row of data into a list does not work, it returns the same as the second example, the entire row is all in one item in the list even though they are separate in the table.
  21. http://www.flickr.com/photos/87714511@N08/9567398857/
  22. Yes tried different files and just made a simple test file. right clicked desktop>New>text document Named it data.csv Opened that in WordPad typed in: data1,data2,data3 Saved file In ubot I put add item to list(%ListTest, $list from file("C:\\Documents and Settings\\Administrator\\Desktop\\data.csv"), "Delete", "Global") Run the script What shows in debug window is +%ListTest 1 item (0) data1,data2,data3 Is there something I'm missing here? that's not list from a csv file, that's an item containing an entire file. This is on an old WindowsXP SP3
  23. I'm new to ubot so maybe I'm mistaken on the use of the parameter but it would seem from its name you want to make a list from a table... I used Make Table from File which imports a csv file properly in to a table of 26 rows and 5 columns. Then inside of an "Add to List" I put a "List from Table" give it the settings of row 0, column 0. It puts all 5 column entires into one list element. I would expect each column to be a separate element in the list. What good is having data that was separated all crammed together? That's not table to list, that's table to useless mess this is what I assum
×
×
  • Create New...