Jump to content
UBot Underground

webtrend

Members
  • Content Count

    29
  • Joined

  • Last visited

Community Reputation

1 Neutral

About webtrend

  • Rank
    Member

Profile Information

  • Gender
    Not Telling

System Specs

  • OS
    Windows 8
  • Total Memory
    < 1Gb
  • Framework
    v3.5
  • License
    Developer Edition

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Hi, I am having an issue with a very simple script alert($plugin function("ExBrowser.dll", "$ExBrowser Check Browser Installed", "Chrome")) plugin command("ExBrowser.dll", "ExBrowser CleanUp") plugin command("ExBrowser.dll", "ExBrowser Launcher", "Chrome", "", "") When I run, the first command returns true. The last command, does not launch the browser. Instead I get the attached error. I am scratching my head right now. This used to work. Am I making some stupid mistake?
  2. I am sorry if this has been asked before. I would like to know if there is a way to create a UI for the user into the browser (chrome or FF). If not, can I use the UI from standard ubot browser and have a launch button that will run the script in say "chrome"? Thanks
  3. Hi, My UI is taking upper third of the window. As a result, my browser window is smaller than normal. On one of the forms, I am trying to upload an image. I am using "Change File Field" command which works beautifully. However, the problem is that the command works only when that upload image button is in the view. If the button is below the fold, I cannot upload the image. I am assuming that the button has lazy loading enabled and that is why it is not working when below the fold. Right now it works if I reduce the height of the UI. This is not a good solution for me. What is the
  4. Is it possible to unzip encrypted files. I did not see that option in the videos.
  5. Thanks CJ. I do not believe that any windows update took place for me. It is so strange though that in the morning bots were working fine and all of a suddent they stopped working
  6. I am having this new problem out of nowhere. Nothing changed from my side. Here is the background: I am using windows task scheduler on Windows 2012 Server edition to capture screenshots of various sites. The bots were running just fine until yesterday. Now, the task scheduler kills the bots before they can even start. If you have ever looked at the task manager when you start the bot, the bot goes into "non responsive" stage for a few seconds before it shows the home page. I believe that is causing the problem. For some reason, task scheduler thinks that the bot is not responding so it ki
  7. Hi, I have a bot compiled on latest version of ubot. Basically the bot hops through several different websites grabbing content and taking screen captures. Some of these sites are loaded with a lot of multimedia content (embedded video, flash, ads, dhtml overlay an so on). I would say almost 30-40% of the time, the browser window becomes unresponsive after only a couple of minutes. The exe file itself is responsive, so I can stop the bot from running. However, I cannot restart. The exe has to be closed and then reopened. I tried disabling flash but that did not help. I also have tried mul
  8. I am using download file command to scrape some jpg files. I want the record in mysql to be written only if the download is successful as I want to keep the db clean. It is easy to verify whether the scraped text meets your criteria for writing to the db but how does one make sure whether a file has been downloaded? I am hoping there is some clever trick. Thanks.
  9. you should be able to tell by using good analytics software. Most bots are not very intelligent and they leave telltale signs. I recently bought traffic for one of my sites from one such entertainment blog. All the IPs were unique and looked legit. However, the bot was designed to click randomly on the site. I saw disproportionately large amount of clicks on my Terms, Privacy, Contact Us links which was stuck at the bottom right corner of the page in 9 pt font (barely visible). I immediately realized that these were not real people clicking on the page. Game over. I won. I don't know anyt
  10. Is there any documentation or knowledge amongst forum members on uploading images to Amazon's S3 buckets from within ubot? S3 does not support FTP as it is an object based system. It has Rest API which can be possibly implemented via "Socket Set Header" command of ubot. Anyone has tried this at all? If you have been able to upload to another CDN, I am interested in knowing
  11. nevermind, I figured out the solution. You have to use $element_child block to read the "a" tag and then choose "href" as the attribute. like this: add list to list(%links,$scrape attribute($element child(<class="mctitle">),"href"),"Don\'t Delete","Global")
  12. ^^^ What you are recommending works but it is scraping a lot more URLs than the other lists. I want all the 3 lists to be consistent so that each numbered item on a given list corresponds to the same numbered items on the other lists. I would like to stay within that class and scrape the href attribute of the class. The html document seems to be well structured so I don't understand why this simple command is not working.
  13. Problem solved, please look at my next post. Thanks, Dan for your offer to help
  14. thanks for the response guys. target="_blank" does grab those links but with many others that I don't want. Adding a boolean AND condition with class="mctitle" does not give me any results fullhref is giving me links that I don't even know where it is pulling from. Looks like I will just have to use regex. Is there any other way around it?
×
×
  • Create New...