Jump to content
UBot Underground

ds062692

Members
  • Content Count

    70
  • Joined

  • Last visited

  • Days Won

    3

Everything posted by ds062692

  1. ds062692

    Scaping A Table

    Might not be the cleanest but this should work. add list to list(%test,$scrape attribute(<class=w"data-row*">,"outerhtml"),"Delete","Global") set(#row,0,"Global") loop($list total(%test)) { set table cell(&out,#row,0,$replace regular expression($find regular expression($list item(%test,#row),"<td class=\"data-col0(.*?)/td>"),"<(.*?)>","")) set table cell(&out,#row,1,$replace regular expression($find regular expression($list item(%test,#row),"<td class=\"data-col2(.*?)/td>"),"<(.*?)>","")) set table cell(&out,#row,2,$replace regular expres
  2. I don't have access to kwfinder site but this should work if you fiddle around with it a little. Instead of scraping item to list, scrape list to list using the same attribute to some temporary list. The list will compromise of all the values but each value it scrapes will be independent. So then you can add the valuesyou want to your main list using the position of that value in your list. So add item to list (main list) - list item (temp list) position 0 if you want the first value. To get all of the values in one row with comma separated you can do add item to list (main list) - te
  3. Has any one used Ubotter self hosted or their hosted service with either a mobile app or a chrome extension?
  4. I am somewhat lost at why there is such a difference in output between running my script in Ubot and compiling it. I am using the HTML parser function from Aymen's post plugin. It runs perfect in Ubot studio but when I run the exe it misses a lot of fields. Does any one have any insight in why it's not running exactly the same. I am scraping linkedin and for example this code gives a blank most of the time in the exe. The annoying part is that it's not the same every time. Some time it will pick it up and leave another field blank while in the dev environment it picks everything up. $replace
  5. A couple of days ago I got a ssl certificate for my site and everything went well until I got people emailing me that their bot gives them an Invalid License error when they try to open it. I installed a WP plugin that rewrote/added rules to the .htacess file. The file is below. I have no real clue what to change in order to make the folder (locker) to not redirect to the https. I think this is the issue but not entirely sure. If any one can help me out or dealt with this before, I would greatly appreciate it. # BEGIN rlrssslReallySimpleSSL rsssl_version[2.2.12] <IfModule mod_rewrite.c>
  6. You don't have to download it. You can just use the read file command. Something like this. add list to list(%links,$find regular expression($read file("https://news.google.com/news?cf=all&hl=en&ned=us&q=Red+Skelton&output=rss"),"(?<=\\&url=).*?(?=<\\/link>)"),"Delete","Global")
  7. You have to set the row and proxiforpost to local. If they are set to Global each thread will overwrite one another.
  8. I am trying to use Inno setup for my new bot (in case it's important it's not ubot, but c#). I locked the exe and then followed the steps in Inno. Everything seemed to work fine until I had submit the license details. It gave me an error that license.lic had no access to the folder. When I ran the bot in Administrator mode everything worked fine. Is there a specific setting in Inno that I have to change to make it have access to the folder without having to run as Administrator. Thanks
  9. I am trying to recreate a bot of mine in c# using the standard web browser and was wondering if there is anything similar to Wait in c#. I know there is a Thread.Sleep but that freezes the browser. Thanks
  10. I have a bot in a very specific niche that I want to sell. I sell a Ubot version, and have a similar Java version for Mac users. The selling site is ranked #1 or #2 in google for the main keywords depending on location. The income generated from the bot follows a wave pattern, has very little sales for parts of the year, while selling very well during other times. I would like to sell it for a couple of reasons, mix of financial/risk aversion, and generally fatigue of having to deal with a certain type of user. I have a couple of questions to people who have sold their bots entirely to someo
  11. I searched the forum and have not seen a solution. How do I get Fiddler to capture requests from Ubot? It works well with everything else but can't seem to get it to work with either the dev or compiled. I have Fiddler4. Thanks
  12. Maybe this might be what you are looking for. ui text box("Prefix", #pre) ui save file("Save", #save) clear list(%alph) clear list(%results) add list to list(%alph, $list from text("a,b,c,d,e,f,g,h,i,j,k,l,m,n,o,p,q,r,s,t,u,v,w,x,y,z", ","), "Delete", "Global") loop(26) { navigate("http://t1-completion.amazon.com/search/complete?method=completion&q={#pre}%20{$next list item(%alph)}&search-alias=aps&client=amazon-search-ui&mkt=1&x=updateISSCompletion&sc=1", "Wait") wait(1) set(#result, $replace regular expression($find regular expression($document text, ",\\
  13. You want to compare the list position of the proxys list to the list total, not the list position of the proxy breakdown. $comparison($list position(%proxys), ">", $list total(%proxys))
  14. I am having a problem lately where bots are opening up blank. This only happens when the computer is set to a foreign language. I attached an image. Does any one know what can be the cause? Thanks
  15. I have a bot that scans a website for certain links at a predefined time. During that time the site comes under heavy traffic. The way the bot works is that if a certain link is not there it does another get request. Currently there is no timeout. Would it be advantageous to set the timeout to 1-2 seconds instead of leaving the timeout field blank? Thanks
  16. add list to list(%urls, $scrape attribute(<href="">, "href"), "Delete", "Global") loop($list total(%urls)) { set(#current list item, $next list item(%urls), "Global") if($contains(#current list item, "/video/")) { then { add item to list(%good urls, #current list item, "Delete", "Global") } else { } } }
  17. Loop through the list and check each list item for conditions that you want. For example, not actually code. Loop list total (scraped url list) Set current list item to next list item in scraped url list If current list item contain x, y, z Add current list item to new list
  18. Was wondering, there is a site that releases items like nike at certain times of the day. I have a browser based bot which is pretty fast, but was wondering if it's possible to complete a purchase just through the plugin or is there a security thing that won't allow it. Thanks
  19. Just replace the <class="err-empty"> with $element offset(<tagname="a">, 60)
  20. This should help. navigate("http://www.netflix.com", "Wait") click(<login link>, "Left Click", "No") type text(<email field>, #username, "Standard") type text(<password field>, #password, "Standard") click(<login button>, "Left Click", "No") wait for browser event("Everything Loaded", "") wait(2) click(<ng-click="switchProfile(profile)">, "Left Click", "No") set(#inc, 1, "Global") clear list(%scraped URLs) loop while($true) { set(#url, "http://movies.netflix.com/WiAltGenre?agid={#inc}", "Global") navigate(#url, "Wait") wait(2) if($exists(<class
  21. I am pretty sure not in ubot. The fastest way is to open in notepad and change the encoding there.
  22. I think I found the solution to the first possibility of getting to an option. For example, when clicking on the military icon, under advanced change mouse event to "Left Mouse Down". Run the node. This will keep the popup options open. Then with another image recognition click the option but use the regular "Left Click".
  23. It's most likely something else but did you add the JVZoo secret key to the ubotlocker admin panel?
  24. Why don't you use find regular expression instead of replace regular expression? In this case find regex is much more convenient.
×
×
  • Create New...