Jump to content
UBot Underground

Eddie Waller

Members
  • Content Count

    977
  • Joined

  • Last visited

  • Days Won

    34

Everything posted by Eddie Waller

  1. You could try adding \b to the end of your regex like ^2[A-Fa-f0-9]{7}\b
  2. I checked out the source code for the wordpress plugin they were using . http://wordpress.org...lugins/captcha/ Also, here's a one line command you can use with run javascript to fill in the value: document.getElementsByName('cptch_number')[0].value={'Lv0=':'0','rfw=':'1','Qv8=':'2','7/4=':'3','g/k=':'4','NPg=':'5','Wfs=':'6','CPo=':'7','ZvU=':'8','kvQ=':'9','KfyK':'10','j/yL':'11','4/yI':'12','JfyJ':'13','YvyO':'14','afyP':'15','jfyM':'16','n/yN':'17','BvyC':'18','K/yD':'19','Cf+K':'20','3/+L':'21','iv+I':'22','TP+J':'23','1f+O':'24','bv+P':'25','EP+M':'26','JP+N':'27','kv+C':'28','7
  3. There sure is, one would be to scrape it to wolfram alpha and have that solve it for you. You can write things like solve x + 10 = 20 for x, and it will give you the answer' A faster way would be to just look at the hidden field that has the encrypted answer, for example it has: <input type="hidden" name="cptch_result" value="Wfs="> When the question is: 9 - x = three Wfs= is the answer to the question, and here's a table showing what number each of those encrypted answers corresponds to: Lv0=,0 rfw=,1 Qv8=,2 7/4=,3 g/k=,4 NPg=,5 Wfs=,6 CPo=,7 ZvU=,8 kvQ=,9 KfyK,10 j/yL,11
  4. Looks like there's a problem right clicking the field in UBot 4 but I was able to fill this field with the element selector. Here's a short video showing how to do it in UBot 4: http://screencast.com/t/xqzqitIi32 And here's the code that was used: focus($element offset(<class="fac_sweepstakes_email_txt">, 1)) type text($element offset(<class="fac_sweepstakes_email_txt">, 1), "my email address", "Standard") The focus was included because when the field is focused, it erases the placeholder text.
  5. Hey, to clear this up, when ordering things it orders them alphabetically, not numerically, that is why 10 comes before 2. So the order it will probably go in is: 1, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 2, 20, 21, 22, etc… The common fix for this is to rename the files named 1 to 01, since it will then go: 01, 02, 03, 04, 05, 06, 07, 08, 09, 10, 11, 12, etc… Hope that helps clear that up
  6. If I understand what you're doing, one way to tackle this problem would be the following: Choose by attribute set #temp to $scrape chosen attribute (value) Add your text to the end of the #temp variable. change chosen attribute (value) to #temp Let me know if that doesn't make sense, if you have a concrete example I can show you the actual nodes you would have to use.
  7. Compiled bots always block popups unfortunately. They also always skip over all errors. We'll probably make this an option at some point in UBot 4.
  8. Also make sure to keep wordpress up to date, since new exploits are found all the time.
  9. Your sub Yahoo Captchas is calling itself over and over using recursion, which eventually blows up UBot.
  10. Here's one way to do it using jQuery haha. http://screencast.com/t/bJnfW63xRyml The code inside the $eval is: eval($('#registrationFormFrame').contents().find('#captcha-eq').parent().find('span [class=""], #captcha-eq').text()) Sorry it's in javascript, but hopefully you can just plug it in and use it, and Praney can post a simpler solution . Hope that helps!
  11. One trick you can use on sites like this that block the context menu with jQuery is using the javascript: $('*').unbind('contextmenu') That will let you right click on anything again. Here's a video showing that in action: http://screencast.com/t/bQ1ODs5tL Also as BotBuddy said, this will be a little easier in UBot 4, as the site won't be able to block our context menus anymore, as shown in this video: http://screencast.com/t/Kc73f7H9Tr Hope that helps
  12. This seems like a good idea to me , could be an easier way to keep track of tricks than forum posts.
  13. What do you mean about a feature to upload files with <input type=file>? Can't you do this in UBot 3?
  14. The new blog URL is at http://ubotstudio.com/blog/ .
  15. You could do it with javascript using the attached bot. Other ways to do this would be using the $date function, or navigating to a page that displays the month and year how you want it, and scraping that text. Hope that helps date.ubot
  16. Ooh sorry, I haven't looked much at what's available in each version of UBot haha. Here's a version using $replace regular expression, where I replace the end of the IP address with an empty parameter. http://screencast.com/t/vZ7QpPUFmH7F
  17. It looks like you're misunderstanding the choosing system. When you choose something by an attribute, and then scrape that same attribute, it is going to be the entire attribute's content, not just the part you matched. The choosing system will find the right element, and to modify the attribute value you will have to scrape that attribute and then change it. Hope that makes more sense. Here's the modified version that seems to work for me. http://screencast.com/t/Bi0ZiytsMk
  18. That pattern works fine for me in UBot, the only issue might be that UBot uses {1} and {2} etc to references things that you want to put into a string, so it may be getting confused with that. http://screencast.com/t/9LQkp04q8 As far as what we support, we are compatible with PCRE. Let me know if that helps.
  19. There will be a text based code editor in UBot 4 that should help with this.
  20. This is because it is trying to save it as a CSV file, and according to the rules of CSV files, you have to escape your quotation marks. Excel and UBot and anything else that can read CSV files should be able to load these files back in just fine. Let me know if this isn't true for you.
  21. Haha at least one thing to take away from that is that if you go to the print view it is a lot easier to scrape. I kind of cheated by using javascript to get me the results, but you could do it pretty easily from that page in regulat ubot code as well. Just thought it'd be funny to give a solution with 2 nodes .
  22. I think this should work, let me know. bothead-eddie.ubot
  23. If we did add this feature we wouldn't just support MySQL or something, I understand people use a lot of different databases now, and we'd work on supporting as many as we could. We would probably support SQLite which would work for storing a database in a local file and being able to relate all that information. As far as creating new commands such as create database table etc, I'm not sure how great the benefits are, or which commands would be important enough to make, and which would not. What we might do is allow some commands that allow you to insert a ubot table's rows into a database ta
  24. I'm not aware of any way to just set cookie data besides viewing a page that sets the cookies for you. The socket compartment should keep track of cookies for you when you visit a page. Hope that helps.
×
×
  • Create New...