Jump to content
UBot Underground

zerofill

Members
  • Content Count

    41
  • Joined

  • Last visited

Everything posted by zerofill

  1. Quicker to just make a PHP script and post the credentials in it and have it post than have Ubot do it. Could have Ubot fill out the form.
  2. Yeah like I was saying... if you have a programming background... it is like your are throwing everything you believe out the window sometimes LOL... But you're right it still isn't "True" in the way you are thinking but same result when it comes to Ubot hehe.
  3. Unfortunately your going to probably just have to do an evaluate "if true" on the select all check box variable and then do everything under that that you would do if all the boxes where checked. It is a hard thing to get used to if you have a programming background always trying to make your code so it isn't so bloated. But because of the way you have to do it with this visual concept of coding... you find you have to bloat it right up lol. That is the only thing I can think of for you to do unless someone has a better idea.
  4. ok... it just updated I guess Seth was doing something and right before that I hardcoded the api.decaptcher.com in but left the others as pulled from the variables... now it works... so I don't know if it was the update or the adding the api.decapcther.com right in. But works so thats all I care about right now lol
  5. Yep hard code it in the bot and it works... take the values from a variable it doesn't... now what the heck sense does that make?
  6. Actually going to be letting people use this bot so that might be a bit of a problem.
  7. no just flies on by hehe See anything wrong with this screenshot? And this is a recaptcha...and at first I was doing the fill in the captcha result by selecting the entry field by attribute and then changing its value with the captcha variable...but then saw Seth had on the blog "fill in field" so did that...neither worked just runs right on by... the variables I have in this screenshot are just from UI text fields... IP being api.decaptcher.com
  8. Are you supposed to actually set a wait on the decaptcher or is it supposed to wait for a response on it's own? Because mine just runs right through it and continues without waiting for a response.
  9. Mike... he is basically telling you this... Lets say you were searching cars: http://www.google.com/#hl=en&source=hp&q=cars In ubot you set a variable that is like x=0 in a loop when you are pulling Google up you increment x by say 10 You actual search would be like http://www.google.com/#hl=en&source=hp&q=cars&start={1} start= the value of X So it would pull up the first 10 then in the loop when x gets 10 added to it... start will = 10 now so now it will get the next 10 results... results from 10-20 on the page... then x will = 20 and pull next 10... Your j
  10. Thanks for the quick reply Seth. Sounds good. 8)
  11. This isn't meant to be a "hurry up" post... I am just wondering if there is an expected time frame yet for any of these: 1) Removal of ubot studio link 2) Customizable UI 3) Skinnable I know this stuff takes time just curious if there is an estimate...like 2 months form now 1...or 6 months form now 2....etc. Reason I ask is...I have some ideas but don't want to reinvent the wheel so to speak.
  12. Icons are just stored as a resource in the executable...thus why it is called reshack (resource hacker) Can replace the icons in the executable with your own.
  13. Yeah that is what I am on...but reshack has been around forever it seems...just forgot all about it until a few days ago.
  14. Some people probably know this but those that don't...I saw people asking about changing the default icons.. You can do that with reshacker... http://angusj.com/resourcehacker/ I replace the icon in the exe with my own using that tool. However on your local machine you will need to rebuild the icon cache to see it. Or just move it to another folder. Everyone you send the exe to will see the new icon from the get go.
  15. Should be able to use an EXE wrapper but the ones that are descent usually aren't cheap... or one that I troed doesn't work with windows 7 atm Or use the javascript trick to hide the browser window... generate random keys for people in a mysql database...send them the key in a file have ubot put the key in by reading the file...browse to your form...enter the key...and if no rows are returned from the database you know the key is invalid select * from keys where key=foo no rows returned = invalid key But still doesn't do a whole lot for sharing keys... Unless your comparing the u
  16. Ahh...great yeah I was trying to decrease from the list position a different way that wasn't working. Thanks again!
  17. Well...problem I am having right now is it is adding to a list but it is adding the 1 under the one it is actually supposed to be adding. It is searching the page for what I want but advancing the list by 1 too early... What I am doing is searching a page for words in a list...when it finds the word in a list it adds that word to a new list. But it always ads the word from the originating list that is after the word it found... I thought at first I would use instead of $next list item (in the search page block/node) use $list Item and $list Position But that didn't work either...an
  18. I could see where you had an update form...and you just used nav to get to that form used part of the scraped data to determine what you were updating...and put an updated value in the form as well..so that basically the form was just doing an update statement like UPDATE foo SET myfield=myvalue WHERE myfield=oldvalue Just having a textbox in the ofrm for new value and old value...need something for oldvalue so it knows what data you are updating...
  19. duh... Thanks 8) I was very close to that...makes perfect sense Keep wanting to just take a value and us in_array() or something lol
  20. So if you want to use the browser constant - Search Page What would be the best way to go about checking if a word from a list was in the page search? In other words have a list of words... check if any of the words are on the page. Sure this is probably simple however a few attempts later and just generating errors lol.
  21. I was just looking for a way to do the same exact thing...
×
×
  • Create New...