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

made purchase, do you send me download?

Hey PM me i'll send you the download link !

 

Hey Aymen,

 

For some reason it says you can't get PMs so I'll post here.

 

For the xpath using //a for some reason href doesn't work - but the other attributes seem to fine. I wanted to tell you in case its a bug.

Whats your code exactly , please PM the code you used !

Link to post
Share on other sites

Hey PM me i'll send you the download link !

 

Whats your code exactly , please PM the code you used !

 

The member Aymen cannot receive any new messages

 

That is what I get when I try to PM you. Anyways - try it out anywhere - for example here is a test on this page of the thread as you will see it parses the innertext just fine but not the href.

set(#xpath_test, $plugin function("HTTP post.dll", "$http get", "http://www.ubotstudio.com/forum/index.php?/topic/12837-sell-http-post-plugin-crazy-bonuses-inside/page-20", "", "", "", ""), "Global")
clear list(%urls)
clear list(%innertext)
add list to list(%urls, $plugin function("HTTP post.dll", "$xpath parser", #xpath_test, "//a", "href"), "Delete", "Global")
add list to list(%innertext, $plugin function("HTTP post.dll", "$xpath parser", #xpath_test, "//a", "InnerText"), "Delete", "Global")

Link to post
Share on other sites

 

The member Aymen cannot receive any new messages

 

That is what I get when I try to PM you. Anyways - try it out anywhere - for example here is a test on this page of the thread as you will see it parses the innertext just fine but not the href.

set(#xpath_test, $plugin function("HTTP post.dll", "$http get", "http://www.ubotstudio.com/forum/index.php?/topic/12837-sell-http-post-plugin-crazy-bonuses-inside/page-20", "", "", "", ""), "Global")
clear list(%urls)
clear list(%innertext)
add list to list(%urls, $plugin function("HTTP post.dll", "$xpath parser", #xpath_test, "//a", "href"), "Delete", "Global")
add list to list(%innertext, $plugin function("HTTP post.dll", "$xpath parser", #xpath_test, "//a", "InnerText"), "Delete", "Global")

 

You are right , it seems that plain //a tag doesn't work when you try to get the href attribute

as a work around try this code untill i fix it

set(#xpath_test, $plugin function("HTTP post.dll", "$http get", "http://www.ubotstudio.com/forum/index.php?/topic/12837-sell-http-post-plugin-crazy-bonuses-inside/page-20", "", "", "", ""), "Global")
clear list(%urls)
clear list(%innertext)
add list to list(%urls, $plugin function("HTTP post.dll", "$xpath parser", #xpath_test, "//a[contains(@href,\'http://\')]", "href"), "Delete", "Global")
add list to list(%innertext, $plugin function("HTTP post.dll", "$xpath parser", #xpath_test, "//a", "InnerText"), "Delete", "Global")

  • Like 1
Link to post
Share on other sites

I realise you probably have a long list but in one of the future updates could you add the ability to change connection header and protocol wRq.KeepAlive = false; wRq.ProtocolVersion = HttpVersion.Version10 ( hope this explains what I mean)

 

this would help when the server drops the connection and stop a transport connection error with some of the sites  I work with

 

thanks

Link to post
Share on other sites

I realise you probably have a long list but in one of the future updates could you add the ability to change connection header and protocol wRq.KeepAlive = false; wRq.ProtocolVersion = HttpVersion.Version10 ( hope this explains what I mean)

 

this would help when the server drops the connection and stop a transport connection error with some of the sites  I work with

 

thanks

 

Yea sure no problem

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

Just purchased this awesome plugin, and loving it so far. :)

 

One thing which I cannot get to work however is setting up new cookies containers and setting a get request inside a thread > http container. I've tried copying how I see it done in this video: http://screencast.com/t/c683SzQpf9Ve

 

But keep getting this error:

 

Error: Value cannot be null
           Parameter name: name

Source: Cookies Containers > Cookies Containers
               > thread > thread > run plugin command
               > set > $run plugin function

 

 

Here is my code (error occurs whether variables are Local or Global):

plugin command("HTTP post.dll", "new cookies containers", 3)
thread {
    plugin command("HTTP post.dll", "http container") {
        set(#html, $plugin function("HTTP post.dll", "$http get", "http://ubotstudio.com/playground/simple-form", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0", "http://ubotstudio.com/playground", "", ""), "Local")
        set(#title, $find regular expression(#html, "(?<=<title>).*?(?=</title>)"), "Local")
        alert(#title)
    }
}
thread {
    plugin command("HTTP post.dll", "http container") {
        set(#html, $plugin function("HTTP post.dll", "$http get", "http://ubotstudio.com/playground/difficult-form", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0", "http://ubotstudio.com/playground", "", ""), "Local")
        set(#title, $find regular expression(#html, "(?<=<title>).*?(?=</title>)"), "Local")
        alert(#title)
    }
}
thread {
    plugin command("HTTP post.dll", "http container") {
        set(#html, $plugin function("HTTP post.dll", "$http get", "http://ubotstudio.com/playground/captcha-form", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0", "http://ubotstudio.com/playground", "", ""), "Local")
        set(#title, $find regular expression(#html, "(?<=<title>).*?(?=</title>)"), "Local")
        alert(#title)
    }
}

Any idea what could be causing this error?
 

Link to post
Share on other sites

I'm trying to get to grips with the HTTP Post plugin and I'm going round in circles. I thought this would be a really simple form to test with:

http://www.watches2u.com/daily-giveaway.html
results in: 
giveaway_id={#givID}&captcha={#cap}&email={#Email}&x=55&y=27

but I can't work out where to find the x & y values to scrape, can anyone please advise?

 

Skype me if you prefer

 

 

Not sure if you're still looking for an answer on this, but most likely these are the x & y coordinates of the click you made on an image to submit the form. Try submitting the form by using the Enter button on your keyboard instead, and you should see x=0&y=0 being sent. If that's the case, then no need to worry about values to scrape for these. Just set them to 0 all the time.

Link to post
Share on other sites

hey !

Just get rid of

plugin command("HTTP post.dll", "new cookies containers", 3)

 

Hi Aymen, thanks for your super fast reply.

 

I removed the "new cookies containers" command, but am still getting the same error. Here is the code I am currently working with:

thread {
    plugin command("HTTP post.dll", "http container") {
        set(#html, $plugin function("HTTP post.dll", "$http get", "http://ubotstudio.com/playground/simple-form", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0", "http://ubotstudio.com/playground", "", ""), "Global")
        set(#title, $find regular expression(#html, "(?<=<title>).*?(?=</title>)"), "Local")
        alert(#title)
    }
}
thread {
    plugin command("HTTP post.dll", "http container") {
        set(#html, $plugin function("HTTP post.dll", "$http get", "http://ubotstudio.com/playground/difficult-form", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0", "http://ubotstudio.com/playground", "", ""), "Global")
        set(#title, $find regular expression(#html, "(?<=<title>).*?(?=</title>)"), "Local")
        alert(#title)
    }
}
thread {
    plugin command("HTTP post.dll", "http container") {
        set(#html, $plugin function("HTTP post.dll", "$http get", "http://ubotstudio.com/playground/captcha-form", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:23.0) Gecko/20100101 Firefox/23.0", "http://ubotstudio.com/playground", "", ""), "Global")
        set(#title, $find regular expression(#html, "(?<=<title>).*?(?=</title>)"), "Local")
        alert(#title)
    }
}

Link to post
Share on other sites

try adding the cookie command back and add the following to each http container should clear the fault.

 

 

plugin command("HTTP post.dll""http set encoding""Default")

  • Like 2
Link to post
Share on other sites

try adding the cookie command back and add the following to each http container should clear the fault.

 

 

plugin command("HTTP post.dll""http set encoding""Default")

 

Thank you kev123, this worked!

 

http://www.reactiongifs.com/wp-content/uploads/2013/06/bravo.gif

Link to post
Share on other sites

Unfortunately, while setting http encoding in the container works to get rid of that error, it also causes my POST requests to fail. When I remove the http container / http encoding, the POST requests work fine again. So I guess the encoding solution is messing with the POST data being sent, and probably I shouldn't be using encoding for these requests.

 

Aymen, do you think it will be awhile before you are able to fix the http container command? Just wondering as I am building a bot for someone, and would be nice to have an idea about it as far as multi-threading possibility.

Link to post
Share on other sites

Unfortunately, while setting http encoding in the container works to get rid of that error, it also causes my POST requests to fail. When I remove the http container / http encoding, the POST requests work fine again. So I guess the encoding solution is messing with the POST data being sent, and probably I shouldn't be using encoding for these requests.

 

Aymen, do you think it will be awhile before you are able to fix the http container command? Just wondering as I am building a bot for someone, and would be nice to have an idea about it as far as multi-threading possibility.

 

you can do multi threading without a problem , unless you are trying to login to the same site and need to keep a session for each login request !

Other than that you can use multithreading !

Link to post
Share on other sites

you can do multi threading without a problem , unless you are trying to login to the same site and need to keep a session for each login request !

Other than that you can use multithreading !

 

Yeah, the problem is that I need to keep cookies when creating accounts for the site I'm working on. It has a 1st form where you set username, password, etc., and submitting that form sets a cookie. At the second form you verify the account info, solve the captcha, and then that cookie is checked for when submitting the 2nd form. If the 1st submitted form's cookie is missing or different when POSTing the 2nd form, it creates an error. So I think cookie containers will be necessary in order for something like this to work with multi-threading, am I right?

 

Also, the second part of the bot I'm building will indeed need to login to the site and keep a session to make blog posts.

 

So do you think it won't be possible to use this plugin with multi-threading for such a purpose for awhile?

Link to post
Share on other sites

Yeah, the problem is that I need to keep cookies when creating accounts for the site I'm working on. It has a 1st form where you set username, password, etc., and submitting that form sets a cookie. At the second form you verify the account info, solve the captcha, and then that cookie is checked for when submitting the 2nd form. If the 1st submitted form's cookie is missing or different when POSTing the 2nd form, it creates an error. So I think cookie containers will be necessary in order for something like this to work with multi-threading, am I right?

 

Also, the second part of the bot I'm building will indeed need to login to the site and keep a session to make blog posts.

 

So do you think it won't be possible to use this plugin with multi-threading for such a purpose for awhile?

 

yes unfortunately there is issues with multi threading a single website , i will have a fix for this very soon rest assured :) , along with many more goodies as always !

Link to post
Share on other sites

i will have a fix for this very soon rest assured :) , along with many more goodies as always !

 

Great to hear this! Also thanks again for your quick replies in this thread. Really great to see a developer who is passionate about his product, and I'm loving your stuff so far!

 

I will wait on the multi-threading fix, and looking forward to the other goodies which you speak of. :D

Link to post
Share on other sites

Hey guys,

 

 

Is there a way to set a specific timeout time with loading sites?

 

I am having some probs with the pagescraper scanning and scraping wp sites floaded with thousands of comments wich take time to scan for keywords.

 

I want to skip these sites.

Link to post
Share on other sites

Hey guys,

 

 

Is there a way to set a specific timeout time with loading sites?

 

I am having some probs with the pagescraper scanning and scraping wp sites floaded with thousands of comments wich take time to scan for keywords.

 

I want to skip these sites.

 

$http post and $http get functions have a timeout input field , you can set your timeout in seconds

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