Jump to content
UBot Underground

diskwizz

Members
  • Content Count

    158
  • Joined

  • Last visited

  • Days Won

    7

Everything posted by diskwizz

  1. Added new requested function "$CBrowser Element Exist". This function will return true if the element exist and false if the element doesn't exist. http://i.imgur.com/HNxPIJA.png?1
  2. Yes we can add any requests in the future, although only a handful of sites at this time checks for system time. Basically we can fake anything with this plugin more then currently possible now with Ubots awesomium browser.
  3. You can't paste the code because on line 3,4 and 6 it's missing parameters. But if it crashes on your machine then let's test out whats going wrong. Are you able to setup a teamview session so we can test what goes wronge?
  4. Well by adding the commands inside the Container. This is a somewhat more complex example that uses Xpath, Xpath is about 40-60 times quicker then Ubot's standard Locators like "<tagname="a">". We support Ubot locators, Xpath locators and CSS locators. plugin command("Communication.dll", "CBrowser Container", "Firefox", "", "") { plugin command("Communication.dll", "CBrowser Navigate", "http://www.bing.com/") plugin command("Communication.dll", "CBrowser Type Text", , "My first external browser search") plugin command("Communication.dll", "CBrowser Click", ) loop(10)
  5. Thanks Dan, yes this is not an internal browser this uses browsers already installed on your machine to be used for your work. The "CBrowser Container" is designed so child commands/nodes know with wich browser to interact with.
  6. Well it's designed to quickly close and open a browser again once it's actions are done and you would need a new fresh browser. Every time the browser open's it loads in a new fresh browser instance that shares no information with the previous once. Even if you open two at once they know nothing about each other cookie etc wise. What we have experienced in the beta group is that people use Firefox or Chrome to develop the routine then on production they switch over to PhantomJS. Mainly because PhantomJS is quicker, uses less cpu and less memory.
  7. Here is a small code example that shows you the basic of using the new functions. plugin command("Communication.dll", "CBrowser Container", "Firefox", "", "") { plugin command("Communication.dll", "CBrowser Navigate", "https://www.bing.com") plugin command("Communication.dll", "CBrowser Type Text", "<name=\"q\">", "My first external browser search") plugin command("Communication.dll", "CBrowser Click", "<name=\"go\">") wait(5) }
  8. So guy's the build is ready only problem is Bliss who has access to JVZOO to update the file isn't here, won't be here also today. So if you did buy a copy then just send me a pm with your payment id and i will give you the download link. Sorry for the inconvenience.
  9. So guy's it has been very quite the past few day's in this thread, that is mainly because we where busy in the beta Skype room. We have today finished implementing all functionality for controlling the other browsers, we have tested it trough and removed any kinks out of the project. Update will go live tomorrow, anyone who has bought the plugin will be able to download the update. Here are two screenshots of the commands and functions from the new update. http://i.imgur.com/HiXmZhJ.png?1 http://i.imgur.com/5QuHflX.png?1
  10. The last pieces of code will be put in place today and then we can start the beta testing. After a period of 2-3 day's of testing and making sure everything works as it should then we are able to release this plugin to the public. I hope your guy's not getting to impatient but we are getting close! So if you have some time left this weekend and want to play with it then send me a pm and maybe you can be part of the beta test.
  11. So guy's a small update on the work we have been doing. Below is a screenshot you will see a process list of the 4th browser we implemented today PhantomJS. This is a headless browser, a headless browser is a browser that doesn't have a GUI(a visible window). To make a long story short. It uses less resources like ram and cpu, wich translate into more threads that can be spawned. The other great thing will be that this browser will be embedded into the dll. So there will be no dependencies and your bots can be easily sold to customers without the need of making sure he has the correct tools
  12. Too bad i already told what your getting for christmas. So now i have to add in a suprise . Ofcourse you can. Well im currently implementing PhantomJS as a 4th supported browser, the great thing is it will be embedded inside the dll so no dependency's on the system. So it would be possible to use that if none of the other browsers are found. The great thing about PhantomJS is that it's completly headless, so there won't be any gui showing up and it will use less cpu and ram then a normal browser.
  13. Not yet but we are close to release the update. All that is left is add the options and let it beta test for a few day's so we know it's stable. Here is a small video showing the three browsers in action http://screencast.com/t/2wgtmBmi5670
  14. Yes this will work multi threaded with proxies. You can even run Chrome, Firefox And Safari multi threaded at the same time. Yes in the options field in the Browser Communication Container you can set the actual window size and user agent. More info on that will come later. It will start up a local installed browser in a sandbox enviroment so it doesn't share any info with your own browser or any other browsers being controlled by the plugin. Can you please send me a PM so we can test this out. But in general it should allow you to do everything a normal person would be able to do in a b
  15. Yes you can, as soon as you turn on your VPN all network traffic from your PC will go over the VPN. No settings in Ubot are required to use the VPN.
  16. Yes it does require you to install the browser on your system, but that also means that you can upgrade or downgrade the browser as you please. If i would embed the browsers in the dll we would get a plugin that is over 150mb. Language does not matter at all however, you can have any browser language you desire. We have made sure that this won't cause any issue at all. It's just strictly a set of commands and functions that communicate with api's supported in browsers. So the supported browsers on the update release will be: Chrome (dependant on local copy)Firefox (dependant on local cop
  17. Yes you can scrape and do all the other things you would do in ubot. You would have to use our commands, we did implement all available ubot commands to go with the update. So it won't only be a easy to step into but the names and parameters of the commands also match. You can run javascript in the browser, proxies, (dis)allow css, (dis)allow javascript and all other options. Please check this video below, i think it would be more clear to see it in action. http://screencast.com/t/SVkoGXUeFvNp
×
×
  • Create New...