Jump to content
UBot Underground

brusacco

Fellow UBotter
  • Content Count

    185
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by brusacco

  1. Have you tried to enable "Less secure app access" from the account settings?
  2. <select id="mys" list="#listado" list-fillwith="options" class="form-control" multiple onchange="doIt();"> </select> <script type="text/javascript"> function doIt(){ ubot.runScript("updateValues(" + JSON.stringify($("#mys").val().join(", ")) + ")"); } </script> I get it working using this. Well now I can use a SELECT multiple, and store those values elsewhere to use them in the ubot code.
  3. Hello, Thanks, yes I know, they are to be used in the HTML of the UI. I just can find any reference other than this forum. That's a very helpful option, or you have to iterate a list and format an innerhtml code, etc. I have this option now: <select id="mys" list="#listado" list-fillwith="options" class="form-control" multiple> </select> And I need to run this one every time the select changes: <script type="text/javascript"> $("#mys").change(function() { ubot.runScript("updateBox(" + $('#mys').val() + ")"); }); </script> The point is to store the multiple value
  4. Hello, Where do you get LIST and LIST-FILLWITH options? I have searched the docs online and did not get those. Thanks.
  5. I dont get crashes, but in a fresh Ubot Studio screen, navigate to a FB group and upload a picture. The Browser gets unresponsive. Latest Ubot, Windows 7 and Windows 10. Chrome 39.
  6. It would be nice to have a "timeout" param in the Navigate command. Unreliable conections have timeouts errors.
  7. In some UBOT pseudocode, this one destroy the original list. loop list_total(original) add_item_list(rand_item_list(original),destination) delete_item(current_pos(original)) end (*) questions, current position in list points the right way after a get rand list item? after a remove item the get rand works on the remain i guess ... I dont have Ubot here so I cant test the code.
  8. http://www.ubotstudio.com/forum/index.php?/topic/11133-store-session-cookies/page-2&do=findComment&comment=105471
  9. And Jquery JSON parser ... https://api.jquery.com/jQuery.parseJSON/
  10. You can also load Jquery and use: https://api.jquery.com/jQuery.parseXML/ for example ...
  11. I guess he means, like in any other product user forums, if there are any friendly admins, that can communicate to the community some insight, or some solutions that are in progress.
  12. Just take a look to some sites where you can download "anything" ... do you thing that they do this for free? Those installers are for sure infected, using a FUD Crypter, your AV can't fight this ... I even see papers about some botnet client getting inside some special motherboard chips!!! They don’t need "admin" credentials ... then look just like a PDF document ... and so ... Most sophisticated ones get inside the bones and you will never know that you are infected ... the AV's just give the user that false feeling of security, and filters most of the kiddies and newb virus.
  13. I can't give any information about this, long time I don’t get involved in this kind of activities. There are many ways you can use a Botnet, Toolbars installers are for most of the part like botnet client installers(legal ones, you agreed to install it). They for example inject ads in pages where there are no ads, I have seen this, I know people that do this today. They change your browser default search engine, to use theirs, and make profit from search results.(pay results) They collect information about sites you visit, and God know what more they collect. They have the ability to cha
  14. You have to look into another kind of forums ... I once run a small scale botnet ...100k pc's, was fun. Look for some botnets based forums, some even have a price list for rental ... mostly for DDOS.
  15. Some botnets have 500k to 800k infected PC's ... some even more ...
  16. That works great ... I use it to scrape Facebook Pages, Groups, Profiles ...etc. window.scrollTo(0,document.body.scrollHeight);
  17. You will have the "submit a ticket" response for sure ...
  18. I guess the "spin" command needs a seed ...
  19. How about the "Copy File" command? http://wiki.ubotstudio.com/wiki/Copy_File
  20. I have no more problems with the Browser.exe crashing ... have another bot, single thread, makes a very long task, use to have random crashes over time. Used the close and open in a shared browser to do the task, and no more problems too.
  21. You can read the hole thing here : http://www.ubotstudio.com/forum/index.php?/topic/15629-browserexe-issues-what-process-is-working-for-you-to-get-around-this/&do=findComment&comment=92885
  22. I have a mutithread bot running since yesterday, no crashes. I run 7 threads, one browser(one user/session) by thread. No problems till now, my Resource Monitor shows Browsers.exe no bigger than 100MB. It logins to a site, get some orders from a backend I programmed in Rails and then navigate to a site/scrap and post to the target social site, like 300 times each thread. I have several Wait commands here and there ... and a big random WAIT at the end of each cicle to act more human. Its a big complex BOT and now have no issues with memory.
×
×
  • Create New...