Jump to content
UBot Underground

SaHiN

Fellow UBotter
  • Content Count

    244
  • Joined

  • Last visited

Posts posted by SaHiN

  1. local variables and http plugin is an old and known issue , the problem is not from the plugin , i'd suggest giving the local dictionary plugin a try!

     

    Regards

     

     

    ı 'm try local dictionary. Local or global or local plugin $http response code don't working.

    define THREAD START {
        plugin command("LocalDictionary.dll", "thread container") {
            thread {
                comment("While This Is Only A Test We Only Delay Here.")
                then {
                    set(#get, $plugin function("HTTP post.dll", "$http get", $next list item(%siteler), "", "", "", ""), "Local")
                    set(#cookie, $plugin function("HTTP post.dll", "$http response", "cookies response"), "Local")
                    add item to list(%cookieler, #cookie, "Don\'t Delete", "Global")
                }
                comment("Decrement Number Of Threads And Store Value to UBot Variable.")
                set(#THREADS Active, $plugin function("Threads Counter.dll", "threads counter", "decrement"), "Global")
            }
        }
    }
    

    Problem 2

     

    boundary data.

     

    orginal

    ------WebKitFormBoundarywbGll3bnbFEOYslH
    Content-Disposition: form-data; name="dedfp"
    
    1436829151977
    ------WebKitFormBoundarywbGll3bnbFEOYslH
    Content-Disposition: form-data; name="photo"; filename="40j.jpg"
    Content-Type: image/jpeg
    

    http post

    -----------------------------8d28bfd70824f9d
    Content-Disposition: form-data; name="dedfp"
    
    1436834137
    -----------------------------8d28bfd70824f9d
    Content-Disposition: form-data; name="photo"; filename="40j.jpg"
    Content-Type: image/jpeg
    

    boundary data pic upload problem.  how to make change boundary?

  2. hi Aymen,

     

     

    multi thread

     

    set(#cookie, $plugin function("HTTP post.dll", "$http response", "cookies response"), "Local")
     

     

    1 Thread great working.

     

    Multi thread don't worknig.

     

    help me?

    add list to list(%siteler, $list from text("http://bing.com
    http://facebook.com
    http://instagram.com
    http://www.ebay.com
    http://www.stackoverflow.com", $new line), "Delete", "Global")
    ui drop down("COUNT", "5,100,1000,10000", #Input Count)
    ui drop down("Threads", "1,5,20,30,40,50", #INPUT Threads)
    ui stat monitor("Threads (Active/Total):", "<b>{#THREADS Active}/{#THREADS Max}</b>")
    ui stat monitor("COUNT:", #COUNT)
    set(#COUNT, #Input Count, "Global")
    set(#THREADS Max, #INPUT Threads, "Global")
    comment("Reset counter to 0.")
    set(#THREADS Active, $plugin function("Threads Counter.dll", "threads counter", "reset"), "Global")
    comment("Main Threading Loop")
    loop while($comparison(#COUNT, ">", 0)) {
        if($comparison($plugin function("Threads Counter.dll", "threads counter", "read"), "<", #THREADS Max)) {
            then {
                comment("Increment Number Of Threads And Store Value to UBot Variable.")
                set(#THREADS Active, $plugin function("Threads Counter.dll", "threads counter", "increment"), "Global")
                THREAD START()
                decrement(#COUNT)
            }
            else {
                wait(0.2)
            }
        }
    }
    comment("Thread Command")
    define THREAD START {
        plugin command("LocalDictionary.dll", "thread container") {
            thread {
                comment("While This Is Only A Test We Only Delay Here.")
                then {
                    set(#get, $plugin function("HTTP post.dll", "$http get", $next list item(%siteler), "", "", "", ""), "Local")
                    set(#cookie, $plugin function("HTTP post.dll", "$http response", "cookies response"), "Local")
                    add item to list(%cookieler, #cookie, "Don\'t Delete", "Global")
                }
                comment("Decrement Number Of Threads And Store Value to UBot Variable.")
                set(#THREADS Active, $plugin function("Threads Counter.dll", "threads counter", "decrement"), "Global")
            }
        }
    }
    comment("Wait For Threads To Close Or Timeout After 20 seconds.")
    set(#THREADS Active, $plugin function("Threads Counter.dll", "threads counter", "read"), "Global")
    set(#WAIT Count, 0, "Global")
    loop while($both($comparison(#THREADS Active, ">", 0), $comparison(#WAIT Count, "<", 10))) {
        set(#THREADS Active, $plugin function("Threads Counter.dll", "threads counter", "read"), "Global")
        increment(#WAIT Count)
        wait(2)
    }
    comment("Check How Many Threads UBot Sees.")
    if($comparison(#THREADS Active, ">", 0)) {
        then {
            alert("Some threads were not closed/decremented properly.")
        }
        else {
            alert("All threads were closed")
        }
    }
    
    
×
×
  • Create New...