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

Hi.

 

This plugin sounds very interesting, but I'm not sure if my skill level is right to use it.

I'm an average Ubot User who mainly writes bots to scrape informations from websites.

 

But my html knowledge is limited. So I was wondering how complicated it is to generate  HTML post compatible code?

Does that work for everything online? Or are there special websites. usecases where this can be used?

 

Thanks in advance for your help

Dan

Link to post
Share on other sites

Hi.

 

This plugin sounds very interesting, but I'm not sure if my skill level is right to use it.

I'm an average Ubot User who mainly writes bots to scrape informations from websites.

 

But my html knowledge is limited. So I was wondering how complicated it is to generate  HTML post compatible code?

Does that work for everything online? Or are there special websites. usecases where this can be used?

 

Thanks in advance for your help

Dan

HTTP requests is not html and is advanced

Link to post
Share on other sites

HTTP requests is not html and is advanced

 

 

Ok, let's rephrase my question.

Are there tutorials included that teach how to use HTTP requests and what I can do with them?

Or do I have to know that first and the plugin will only allow me to "translate" that knowledge into Ubot?

 

Dan

Link to post
Share on other sites

Ok, let's rephrase my question.

Are there tutorials included that teach how to use HTTP requests and what I can do with them?

Or do I have to know that first and the plugin will only allow me to "translate" that knowledge into Ubot?

 

Dan

aymen explains everything pretty well in his videos, also regex knowledge is useful for scraping

Link to post
Share on other sites

Ok, let's rephrase my question.

Are there tutorials included that teach how to use HTTP requests and what I can do with them?

Or do I have to know that first and the plugin will only allow me to "translate" that knowledge into Ubot?

 

Dan

 

The tutorials that comes with this plugin may not be enough though , but if you are just scraping info from the web then it will work perfect for you!

should be able to get what you want from the html document using regex or xpath!

Link to post
Share on other sites

Hey aymen i just bought your plugin and start playing with it.

Can you make the functions ignore (maybe an option weather to ignore or not) system proxy (the one in internet explorer).

I just used http_get on cmyip.com and noticed it uses the system proxy, and i don't want this. I want the plugin to be independent and have the freedom to use the internet directly weather IE is using proxy or not.

Thank you for your constant attention to the users.That's very nice.

 

Also, socks support is a must (found no reference to it while searching this thread)

 

D.

Link to post
Share on other sites

Hey aymen i just bought your plugin and start playing with it.

Can you make the functions ignore (maybe an option weather to ignore or not) system proxy (the one in internet explorer).

I just used http_get on cmyip.com and noticed it uses the system proxy, and i don't want this. I want the plugin to be independent and have the freedom to use the internet directly weather IE is using proxy or not.

Thank you for your constant attention to the users.That's very nice.

 

Also, socks support is a must (found no reference to it while searching this thread)

 

D.

 

sure thing i will look into those two!

there is a plan to integrate socks in the near future!

Link to post
Share on other sites

Hey Aymen just saw the documentation that was emailed today. I was only confused 1 function that being captcha dialog function which I have no idea how it is supposed to be used and it seems like it was the only thing left out of the documentation.


Link to post
Share on other sites

 

Hey Aymen just saw the documentation that was emailed today. I was only confused 1 function that being captcha dialog function which I have no idea how it is supposed to be used and it seems like it was the only thing left out of the documentation.

 

 

There should be a description in the documentation , here is what i wrote about it :

$http captcha dialog


this function is used for manually solving captchas images ,all what you have to do is insert the image path(should be saved on your computer) then run this and a captcha window will popup

Let me know what was not clear and i'll explain it :)

Link to post
Share on other sites

Hi aymen,

 

multi http container, title save = %total_title. don't save. help me?

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)
        add item to list(%total_title, #title, "Delete", "Global")
    }
}
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)
        add item to list(%total_title, #title, "Delete", "Global")
    }
}
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)
        add item to list(%total_title, #title, "Delete", "Global")
    }
}
load html(%total_title)

Link to post
Share on other sites

Hey Aymen having trouble figuring out how to get Json posts to go through. For example posting this form successfully.

 

https://pumpbuddy.us/main/register

 

This is the post request im seeing. 

 

{"nickname":"demouser213","password":"fakepass22"}

 

When I put it through it returns "The remote server returned an error: (400) Bad Request." Any idea about this and how to go about getting the post to work?

 

Also wanted to say, I bought your plugin when it first came out. Hadn't had much time to look into it but the last few days ive been giving it a good go. Excellent job, the plugin has come a long way from where it was even just a few months back.

Link to post
Share on other sites

 

Hi aymen,

 

multi http container, title save = %total_title. don't save. help me?

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)
        add item to list(%total_title, #title, "Delete", "Global")
    }
}
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)
        add item to list(%total_title, #title, "Delete", "Global")
    }
}
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)
        add item to list(%total_title, #title, "Delete", "Global")
    }
}
load html(%total_title)

 

Grabbing the titles fine here :/

 

 

Hey Aymen having trouble figuring out how to get Json posts to go through. For example posting this form successfully.

 

https://pumpbuddy.us/main/register

 

This is the post request im seeing. 

 

{"nickname":"demouser213","password":"fakepass22"}

 

When I put it through it returns "The remote server returned an error: (400) Bad Request." Any idea about this and how to go about getting the post to work?

 

Also wanted to say, I bought your plugin when it first came out. Hadn't had much time to look into it but the last few days ive been giving it a good go. Excellent job, the plugin has come a long way from where it was even just a few months back.

 

i'll check it out

Link to post
Share on other sites

Any word on the JSON issue?

oh sorry i forgot to update you!

it seems the issue not from the Json post data but rather from the authorization header !

the plugin doesn't support such authorization for the time being but i'll consider changing the set http headers command to make it accept it !

Link to post
Share on other sites

oh sorry i forgot to update you!

it seems the issue not from the Json post data but rather from the authorization header !

the plugin doesn't support such authorization for the time being but i'll consider changing the set http headers command to make it accept it !

 

Yea I thought it might be something along those lines. That would be great as ive run into this issue with a handful of sites.

Link to post
Share on other sites

Just bought it, I will start playing with it.

Thanks

----

Update:

I havent got the automatic email for the downloadable content.

 

PM me your transaction details i'll send it to you

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