Jump to content
UBot Underground

[SELL] HTTP POST plugin + Crazy Bonuses Inside


Recommended Posts

I'm receiving a couple errors, here are two examples:

 

http://content.screencast.com/users/acamso/folders/Snagit/media/8fd108d5-ec54-47e7-bec4-134e21c80711/09.14.2014-20.41.png http://content.screencast.com/users/acamso/folders/Snagit/media/4e47eab6-fabc-4b1f-8dc8-f7f17925a269/09.14.2014-20.41.png

 

1. The first one is setting a cookies string to the cookie response + some extra data

2. The second one is setting a variable to the response headers

 

Hope someone can help

 

the first issue could be about a duplicate cookie parameter name!

 

send me an example code via PM , i'll check it out tomorrow!

Link to post
Share on other sites
  • 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

the first issue could be about a duplicate cookie parameter name!

 

send me an example code via PM , i'll check it out tomorrow!

 

Thanks for the quick response! Should I "Clear cookies" before setting the cookies string then? The container mode is "Basic" if that helps.

 

Also on an unrelated note.. when using the "Clear cookies" command.. if I want to clear cookies for http://sub1.domain.com, http://sub2.domain.com .. would just http://domain.com work?

Link to post
Share on other sites

Thanks for the quick response! Should I "Clear cookies" before setting the cookies string then? The container mode is "Basic" if that helps.

 

Clear Cookies is not necessary !

Again , i need a code snippet of the part generating that error to see it is is a bug or not!

 

Also on an unrelated note.. when using the "Clear cookies" command.. if I want to clear cookies for http://sub1.domain.com, http://sub2.domain.com .. would just http://domain.com work?

 

 

Use the subdomain

Link to post
Share on other sites
  • 2 weeks later...
  • 2 weeks later...

Awesome! Thanks a lot. 

 

What is "http load error page" doing exactly? Is that to show the complete error message when something goes wrong?

Maybe I get it wrong, but shouldn't that be the result of http get/post when there is an error? Instead of having to call another command?

 

 

Have a nice day

Dan

Link to post
Share on other sites

Awesome! Thanks a lot. 

 

What is "http load error page" doing exactly? Is that to show the complete error message when something goes wrong?

Maybe I get it wrong, but shouldn't that be the result of http get/post when there is an error? Instead of having to call another command?

 

 

Have a nice day

Dan

 

http load error page is a setting command , to choose whether to show complete error pages or no

Link to post
Share on other sites

 

Hi Aymen,
 
I just purchased Http Post Plugin & Socket Code Generator software and sent you a pm, please check your inbox.
 
Sompoch

 

 

Package sent!

Thank you for your business!

Regards!

Link to post
Share on other sites

I think I found a bug, when you use http clear objects and http response status you get an error.

 

Here is an example script:

set(#threads, $plugin function("Threads Counter.dll", "threads counter", "reset"), "Global")
run()
define run {
    loop(10) {
        loop while($comparison($plugin function("Threads Counter.dll", "threads counter", "read"), ">=", 2)) {
            wait(1)
        }
        set(#threads, $plugin function("Threads Counter.dll", "threads counter", "increment"), "Global")
        thread {
            set(#page, $plugin function("HTTP post.dll", "$http get", "http://imautobots.com", "", "", "", ""), "Local")
            set(#response, $plugin function("HTTP post.dll", "$http response status"), "Local")
            plugin command("HTTP post.dll", "http clear objects")
            set(#threads, $plugin function("Threads Counter.dll", "threads counter", "decrement"), "Global")
        }
    }
}

Link to post
Share on other sites

 

I think I found a bug, when you use http clear objects and http response status you get an error.

 

Here is an example script:

set(#threads, $plugin function("Threads Counter.dll", "threads counter", "reset"), "Global")
run()
define run {
    loop(10) {
        loop while($comparison($plugin function("Threads Counter.dll", "threads counter", "read"), ">=", 2)) {
            wait(1)
        }
        set(#threads, $plugin function("Threads Counter.dll", "threads counter", "increment"), "Global")
        thread {
            set(#page, $plugin function("HTTP post.dll", "$http get", "http://imautobots.com", "", "", "", ""), "Local")
            set(#response, $plugin function("HTTP post.dll", "$http response status"), "Local")
            plugin command("HTTP post.dll", "http clear objects")
            set(#threads, $plugin function("Threads Counter.dll", "threads counter", "decrement"), "Global")
        }
    }
}

 

Weird , no errors here :/

What does the error say ?

Link to post
Share on other sites

The error appears to be the HTTP Response Status but it only happens when you use HTTP Clear Objects AFAIK.

 

http://i.imgur.com/FOCZdCk.png

 

can you provide the whole code that causes this error ?

also try it without any other plugin activated!

Link to post
Share on other sites

can you provide the whole code that causes this error ?

also try it without any other plugin activated!

 

I recreated the scenario above which gives me an error every time when using only HTTP Post and Threads Counter Plugin. I get the same issue with using only the HTTP Post plugin as well, using this code:

set(#threads, 0, "Global")
run()
define run {
    loop(10) {
        loop while($comparison(#threads, ">=", 2)) {
            wait(1)
        }
        increment(#threads)
        thread {
            set(#page, $plugin function("HTTP post.dll", "$http get", "http://imautobots.com", "", "", "", ""), "Local")
            set(#response, $plugin function("HTTP post.dll", "$http response status"), "Local")
            plugin command("HTTP post.dll", "http clear objects")
            decrement(#threads)
        }
    }
}

Link to post
Share on other sites

Tested the code as requested and got the same error.

 

http://content.screencast.com/users/giganut/folders/Snagit/media/fec3f4a5-3731-4d3a-98de-4c02750799f3/10.20.2014-19.02.png

Link to post
Share on other sites

 

I recreated the scenario above which gives me an error every time when using only HTTP Post and Threads Counter Plugin. I get the same issue with using only the HTTP Post plugin as well, using this code:

set(#threads, 0, "Global")
run()
define run {
    loop(10) {
        loop while($comparison(#threads, ">=", 2)) {
            wait(1)
        }
        increment(#threads)
        thread {
            set(#page, $plugin function("HTTP post.dll", "$http get", "http://imautobots.com", "", "", "", ""), "Local")
            set(#response, $plugin function("HTTP post.dll", "$http response status"), "Local")
            plugin command("HTTP post.dll", "http clear objects")
            decrement(#threads)
        }
    }
}

 

 

Tested the code as requested and got the same error.

 

http://content.screencast.com/users/giganut/folders/Snagit/media/fec3f4a5-3731-4d3a-98de-4c02750799f3/10.20.2014-19.02.png

 

Allright , will look into it in the next update!

 

hi Aymen,

 

How to make wordpress upload photo?

 

didn't have a look at it before , but why don't you try http upload function ?

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