Jump to content
UBot Underground

[SELL] HTTP POST plugin + Crazy Bonuses Inside


Recommended Posts

  • Replies 1.3k
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

If you Ever Want to create bots that run 100x faster and smoother than your actual bots , then read this page !   Post data on the background without having to run your browser , integrate unlimited

New update with couple of fixes and improvements ! *Added a small command : http basic mode to allow you to run http get and http post on basic mode(a mode i created myself from the primitive socket

Hello guys Its been a while since i released an update 2.0 Update: -added new function scrape list that will replace list scraper command with new regex and few fixes ! -added new function soap req

Posted Images

Multi thread Page scraper or  Multi thread http post problem.

 

 

Sample page scraper code :

 

 

clear list(%urls)
add list to list(%urls, $list from text("http://www.google.com
http://www.bing.com
http://www.yandex.com.tr", $new line), "Delete", "Global")
ui stat monitor("total list", $list total(%urls))
ui stat monitor("urls processed", #urls processed)
ui stat monitor("current thread", #used threads)
set(#threads to run, 3, "Global")
set(#used threads, 0, "Global")
set(#urls processed, 0, "Global")
set(#say, 0, "Global")
loop while($comparison($list total(%urls), ">", #urls processed)) {
    loop while($comparison(#used threads, ">=", #threads to run)) {
        wait(1)
    }
    increment(#used threads)
    thread {
        in new browser {
            if($comparison($list position(%urls), "<", $list total(%urls))) {
                then {
                    increment(#say)
                    plugin command("HTTP post.dll", "Page Scraper", $next list item(%urls), "", #out) {
                    }
                    wait(3)
                    save to file("C:\\Users\\admin\\Desktop\\scrape\\{#say}.html", #out)
                    increment(#urls processed)
                }
                else {
                }
            }
            decrement(#used threads)
        }
    }
}
  • Like 1
Link to post
Share on other sites

Multi thread Page scraper or  Multi thread http post problem.

 

 

Sample page scraper code :

 

 

clear list(%urls)
add list to list(%urls, $list from text("http://www.google.com
http://www.bing.com
http://www.yandex.com.tr", $new line), "Delete", "Global")
ui stat monitor("total list", $list total(%urls))
ui stat monitor("urls processed", #urls processed)
ui stat monitor("current thread", #used threads)
set(#threads to run, 3, "Global")
set(#used threads, 0, "Global")
set(#urls processed, 0, "Global")
set(#say, 0, "Global")
loop while($comparison($list total(%urls), ">", #urls processed)) {
    loop while($comparison(#used threads, ">=", #threads to run)) {
        wait(1)
    }
    increment(#used threads)
    thread {
        in new browser {
            if($comparison($list position(%urls), "<", $list total(%urls))) {
                then {
                    increment(#say)
                    plugin command("HTTP post.dll", "Page Scraper", $next list item(%urls), "", #out) {
                    }
                    wait(3)
                    save to file("C:\\Users\\admin\\Desktop\\scrape\\{#say}.html", #out)
                    increment(#urls processed)
                }
                else {
                }
            }
            decrement(#used threads)
        }
    }
}

 

You will get problems when using multithreading with the http post plugin as the variables can not be set to local , it is more of a Ubot API limitation , nothing can be done for now unless Eddy do something about that

Link to post
Share on other sites
You will get problems when using multithreading with the http post plugin as the variables can not be set to local , it is more of a Ubot API limitation , nothing can be done for now unless Eddy do something about that

 

Thank you Aymen.

Link to post
Share on other sites
You will get problems when using multithreading with the http post plugin as the variables can not be set to local , it is more of a Ubot API limitation , nothing can be done for now unless Eddy do something about that

 

You can still multi-thread with it...

 

But you have to do it a little differently than the way most people are doing it.  You have to hard code all your variables to be different for each individual thread.

Link to post
Share on other sites
You will get problems when using multithreading with the http post plugin as the variables can not be set to local , it is more of a Ubot API limitation , nothing can be done for now unless Eddy do something about that

 

http://a1303.hizliresim.com/17/7/kty2z.png

 

 

Bad idea?

  • Like 1
Link to post
Share on other sites
Yea kind of :)

but i fill find a solution for multithreading !

set(#say, 0, "Global")
thread {
    in new browser {
        increment(#say)
    }
}

#Say = variant

 

Output Result :

 

#say1, #say2, #say3, #say4, #say5 ......

 

:)

Link to post
Share on other sites

1.4 version updates :

-New Function : $API function : this function is dedicated to making calls to any API interface , you just need a Post URL and a Post Data!

-Added Proxy Support To PageRank Function : if the proxy field is left empty then the proxy usage will be disabled !

 

Check your emails for the download links , otherwise PM on the forum or on skype

  • Like 1
Link to post
Share on other sites

Whoa, just noticed all the amazing bonuses.  Just one of these bonuses alone would make it worth it.  I'm getting this now before aymen comes to his senses and raises the price :P

 

One question: is there a list of all the sites this plugin works with and what it can do on each (sign up account or post content)?

Link to post
Share on other sites

Hey Aymen - Getting a 404 error on your download page.  You might wanna check that out.  I'm hitting you up on skype now.

 

EDIT: Someone on the skype group informed me you took down the download link and will send it.  No worries, I will wait for your email or response on skype :)

Link to post
Share on other sites
Hey Aymen - Getting a 404 error on your download page.  You might wanna check that out.  I'm hitting you up on skype now.

 

EDIT: Someone on the skype group informed me you took down the download link and will send it.  No worries, I will wait for your email or response on skype :)

Hey , yea took down all old download links untill i setup a strong and secure delivery system !

send me a PM on the forum or on skype and i'll send you the plugins right away :)

  • Like 1
Link to post
Share on other sites

Has anyone found a solution to using this with multithreading?  I'm just thinking outloud here, but is there a way to maybe create a new unique global variable for each thread that opens?  And then how would you call that variable later?

 

EDIT: sorry if this was already answered (I don't have time right now to go through 8 pages), but I'm just going through all the videos now.  I noticed on the update that you have your own Proxy command for the plugin.  Will the regular proxy command work?  Can we drag any commands into the HTTP post plugin?  I usually like to us an if then statement because I don't require users to use proxies.  So if proxies list exist, then it will select a proxy AND set proxy credentials (something else I didn't see in the HTTP post plugin),

Link to post
Share on other sites
Has anyone found a solution to using this with multithreading?  I'm just thinking outloud here, but is there a way to maybe create a new unique global variable for each thread that opens?  And then how would you call that variable later?

 

EDIT: sorry if this was already answered (I don't have time right now to go through 8 pages), but I'm just going through all the videos now.  I noticed on the update that you have your own Proxy command for the plugin.  Will the regular proxy command work?  Can we drag any commands into the HTTP post plugin?  I usually like to us an if then statement because I don't require users to use proxies.  So if proxies list exist, then it will select a proxy AND set proxy credentials (something else I didn't see in the HTTP post plugin),

 

Hey , there maybe a solution to multithreading but to be honest i personally didn't test it yet , the regular proxy command won't work , you need to use the proxy command that i've created , also you can use if statements and other commands inside the http post command !

Link to post
Share on other sites

Has anyone here had any success with the twitter account register sourcecode and the Clear Cookies command?  I'm just finishing up two solid days of just trying to figure this out and I have almost gotten nowhere.  

 

Which URL do you need to clear?  I have tried:

 

http://twitter.com

https://twitter.com

https://mobile.twitter.com

http://mobile.twitter.com

mobile.twitter.com

twitter.com

https://mobile.twitter.com/signup

http://mobile.twitter.com/signup

 

Can someone please help me out before I walk into the twitter headquarters in SF with a sawed off shotgun and demand they tell me the secrets to doing shit on their site using HTTP?!

 

*** Disclaimer: the above comment was a joke.  If someone does happen to walk into twitter headquarters with a shotgun (or any other weapon), then I know nothing about it :P

Link to post
Share on other sites
Has anyone here had any success with the twitter account register sourcecode and the Clear Cookies command?  I'm just finishing up two solid days of just trying to figure this out and I have almost gotten nowhere.  

 

Which URL do you need to clear?  I have tried:

 

http://twitter.com

https://twitter.com

https://mobile.twitter.com

http://mobile.twitter.com

mobile.twitter.com

twitter.com

https://mobile.twitter.com/signup

http://mobile.twitter.com/signup

 

Can someone please help me out before I walk into the twitter headquarters in SF with a sawed off shotgun and demand they tell me the secrets to doing shit on their site using HTTP?!

 

*** Disclaimer: the above comment was a joke.  If someone does happen to walk into twitter headquarters with a shotgun (or any other weapon), then I know nothing about it :P

yeai found a problem clearning twitters cookies , i'm guessing it is because of the https , i'm doing tests on sites with the https , will keep you guys posted on this !

Link to post
Share on other sites
yeai found a problem clearning twitters cookies , i'm guessing it is because of the https , i'm doing tests on sites with the https , will keep you guys posted on this !

It will be awesome once this is resolved (and the issue with multithreading).  Then this plugin will be standard in every bot I make :)

Link to post
Share on other sites
Do you know if multithreading api addition is in the cards(a month or two) or is it another I have a dream moment that will not come?

Hey i'm not really sure what you mean :)

Link to post
Share on other sites
Do you know if multithreading api addition is in the cards(a month or two) or is it another I have a dream moment that will not come?

 

Multi-threading will not be possible until Eddie adds in support for local variables into the ubot api. 

 

But it is still possible with this plug-in, you just can't use local variables...

Link to post
Share on other sites

I have the plugin and it has been very useful, I was trying to ask Aymen if he had any conversations with Eddie about the api modification. I have a dream part was a joke (something that is possible but will never come). I hate the "it might come but we don't know when" hints on the part of the dev team. Or even worse, it's possible but it's not on the plate right now. 

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...