Jump to content
UBot Underground

ddlx

Fellow UBotter
  • Content Count

    25
  • Joined

  • Last visited

Posts posted by ddlx

  1. Hum ok, got the same problem, no solution ?

     

    get the tiny is Easy, here is an exemple of code

    but get the variable....  #my_variable   ???

    <script type=\"text/javascript\" src=\"http://tinymce.cachefly.net/4.0/tinymce.min.js"></script>
    <script type=\"text/javascript\">
    tinymce.init(\{
        selector: \"textarea.editme\"
     \});
    </script>
    
    </br>  
    <textarea class=\"editme\" variable=\"#my_variable\" fillwith=\"value\" COLS=\"60\" ROWS=\"10\"></textarea> 
    </br>
  2. Ok it's quite Easy :

     

    Exemple of code, the editor is here but the variable not save...

    <script type=\"text/javascript\" src=\"http://tinymce.cachefly.net/4.0/tinymce.min.js"></script>
    <script type=\"text/javascript\">
    tinymce.init(\{
        selector: \"textarea.editme\"
     \});
    </script>
    
    </br>  
    <textarea class=\"editme\" /variable=\"#my_variable\" fillwith=\"value\" COLS=\"60\" ROWS=\"10\"></textarea> 
    </br>
    
  3. Hi all

     

    Got a proble with $subtract lists  :

     

    I have a list A   :

     

    a

    b

    c

    d

    e

     

    I have a list b   :

     

    b

    c

    d

     

    i want a list C  = listA  - listB

     

    a

    e

     

    so i use $subtract lists

     

    here is my code :

     

    clear list(%listA)
    clear list(%listB)
    clear list(%listC)
    add item to list(%listA$list from file("{$special folder("Application")}\\listA.txt"), "Delete""Global")
    add item to list(%listB$list from file("{$special folder("Application")}\\listB.txt"), "Delete""Global")
    add item to list(%listC$subtract lists(%listA%listB), "Delete""Global")
    set(#listC%listC"Global")

     

    Strangely the ListC =

     

    a

    b

    c

    d

    e

     

     

    Is this normal ?

  4. Hi all

     

    I would like to scrappe the google serp urls.

     

    This code from 'search result scrapper' (by Kreatus) was working fine.

    But it not working now (i  think google have change his page) 

     

        if($comparison(#current total"<"#total results)) {
            then {
                if($search page("onmousedown=\"return rwt(this")) {
                    then {
                        add list to list(%result urls$scrape attribute(<outerhtml=w"<a href=\"*\" class=\"*\" onmousedown=\"return rwt(this*)\">*</a>">, "href"), "Delete", "Global")
                    }
                    else {
                        add list to list(%result urls, $page scrape("<a href=\"/url?q=", "&sa="), "Delete", "Global")
                    }
                }
                click(<style="background-position:-96px 0;width:71px">"Left Click""No")
                wait for browser event("DOM Ready""")
            }
            else {
            }
        }

     

    I think the wrong code is there :

    $scrape attribute(<outerhtml=w"<a href=\"*\" class=\"*\" onmousedown=\"return rwt(this*)\">*</a>">, "href")

     

    Is someone got the solution ?

  5. Hi all,

     

    (Sorry for my english, i am french)

     

    Well, 

     

    I am using the "BotGuru Secured / Protect-IT" solution... since 5 day ago... 

     

    I ve used essentialy the butGuru Secure to make a license systeme for my Bot

     

    and you know what ? It is working !!

     

     

    So i would like to congratulate the Butguru team for this great job

     

    and i would like to congratulate for the support,

    the butguru team help me to configure the soft, the team is very reactive.

     

    It good to work like this.

     

    I recommend this soft !!

     

    Best regard :

     

    F.P

    from France lol

    • Like 2
  6. Hi all,

     

    My fisrt contribution, hope you ll like it.

     

    This is an astuce to protect your compiled boot with loggin and password, simply by using an "htaccess" protection :

     

    HOW TO :

     

    1) Fisrt : make an html page with like this :

     

    mypage.html

     

    <html>

    <head>

    <META NAME="keywords" CONTENT="passwordok">

    <title>Hello dolly</title>

    </head>

    <body>

    hello dolly

    </body>

    </html>

     

     

    2) Protect this page with htacess : (Login and password)

    3) Then tell the bot to connect to this page using :

     

    http://login:pass@my...com/mypage.html

     

    4) And verify if meta keyword contain "passwordok"

     

    If meta keyword show "passwordok" (password and login OK)

    Them the bot will run

     

    If metakeyword dont show passwordok (Password and login not ok)

    Them the bot will stop

     

    Simple but working

     

    THE CODE :

     

    ui text box("Login", #login)
    ui text box("Pass", #pass)
    navigate("http://{#login}:{#pass}@mysite/mypage.html", "Wait")
    if($comparison($meta keywords, "=", "passwordok")) {
    then {
     alert("OK GOOD")
    }
    else {
     alert("NO GOOD")
     stop script
    }
    }

     

    =====

    Then you ll just have to add all allowed "login and password" to your htaccess (witch is working like an licence server).

    =====

     

    Have fun (if it work) ;)

    • Like 1
×
×
  • Create New...