Jump to content
UBot Underground

brusacco

Fellow UBotter
  • Content Count

    185
  • Joined

  • Last visited

  • Days Won

    2

Posts posted by brusacco

  1. <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.

    • Like 1
  2. 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 values selected in the select to another place, to use those options from there. As far as I know Ubot don't store multiple values from a select, right?

     

    That runScript is not working for me right now, I have placed a Navigate in the define(to test it), and it never gets executed. The define store the "value" in the needed Ubot variable like this:

    define updateBox(#valores) {
        set(#gruposdisplay,#valores,"Global")
    }
    

    Thanks for the help!

  3. 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.

  4. 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.

     

     

    Are there any UBOT-admins following here? No "official" comments?

  5. 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.

    • Like 1
  6. 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 change anytime the look and buttons of the toolbars, ad a new button ... ad whatever they wish.

    I have programmed several toolbars, so I know this shit.

     

    Is sad to open a friend computer and find his Explorer with 2 o 4 toolbars installed. :(

    • Like 1
×
×
  • Create New...