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, still been having the same issue for the past couple years:

 

- Keep-alive doesnt get set

- Cant set Accept-Language

- Cant remove Accept-Charset

 

Any ideas?

 

If the commands are not working, Aymen has to fix them. Did you send that to him already?

Dan

Link to post
Share on other sites

Hi, still been having the same issue for the past couple years:

 

- Keep-alive doesnt get set

- Cant set Accept-Language

- Cant remove Accept-Charset

 

Any ideas?

Same problems for me. +1

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

Does anyone know a way to get the final URL from a http get with redirects? My url gets redirected like 5 times. What I need to know is that final URL so I can set it as a variable. Any ideas?

Link to post
Share on other sites

Does anyone know a way to get the final URL from a http get with redirects? My url gets redirected like 5 times. What I need to know is that final URL so I can set it as a variable. Any ideas?

 

Hi.

 

It depends a bit on how the redirects work. But in 95% of the times you can enable auto redirect:

plugin command("HTTP post.dll", "http auto redirect", "Yes")

 

And then you get the final URI via:

alert($plugin function("HTTP post.dll""$http response""response uri"))

 

BUT... of a site is using javascript or some other stuff to redirect things, it could happen that it doesn't work automatically. 

Then you have to disable Auto redirect, scrape the redirect URLs from the source code and execute everything manually.

 

And there are even cases where you can't use Http plugin at all. Really depends on the site and how everything is coded.

 

 

Dan

Link to post
Share on other sites

Hi.

 

It depends a bit on how the redirects work. But in 95% of the times you can enable auto redirect:

plugin command("HTTP post.dll", "http auto redirect", "Yes")

 

And then you get the final URI via:

alert($plugin function("HTTP post.dll""$http response""response uri"))

 

BUT... of a site is using javascript or some other stuff to redirect things, it could happen that it doesn't work automatically. 

Then you have to disable Auto redirect, scrape the redirect URLs from the source code and execute everything manually.

 

And there are even cases where you can't use Http plugin at all. Really depends on the site and how everything is coded.

 

 

Dan

 

Ah thank you! I was trying that but I was right clicking and trying to run each command in order and it always gave me a Null error. When I put them into a define and just ran the program it finally worked. I guess I just needed confirmation that this is how that actually worked. It looks like in my case the urls are followed without any problems or extra steps needed.

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

I just started having an issue with the plugin.  Whenever I try to use it I get a script error: "The given key was not present in the dictionary."

 

I tried restarting Ubot, disabling and re-enabling the plugin and disabling all other plugins, to no avail.

 

Here's a screenshot for you: http://prntscr.com/afccvv

 

Any ideas?

Link to post
Share on other sites

It looks possible you are using custom string inside of a function not designed for this. Remove User Agent function and just use the string.

 

I tried a string in the function and got your error.

CD

  • Like 1
Link to post
Share on other sites

Thanks man. I stepped away for a bit and figured out the issue not two minutes before you posted. I hadn't had a chance to return here to comment yet.

 

I hadn't realized you couldn't do that though. Is there any way to add custom user agents to the plugin's native list?

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

Http Post Plugin Update 2.6.0 Log :

  • Fixed issue where Accept-Language header is not being set
  • Fixed issue where Accept-Charset header is not being set
  • Fixed issue where Keep-alive header is not being set
  • added http add cookie command (Paid update requested by Pascal Bourreau)
  • added http get all cookies function (Paid update requested by Pascal Bourreau)
  • added http get cookie function (Paid update requested by Pascal Bourreau)

If you didn’t get the update by email open a support ticket here : https://ubotplugins.freshdesk.com/

Link to post
Share on other sites

 

Http Post Plugin Update 2.6.0 Log :

  • Fixed issue where Accept-Language header is not being set
  • Fixed issue where Accept-Charset header is not being set
  • Fixed issue where Keep-alive header is not being set
  • added http add cookie command (Paid update requested by Pascal Bourreau)
  • added http get all cookies function (Paid update requested by Pascal Bourreau)
  • added http get cookie function (Paid update requested by Pascal Bourreau)

If you didn’t get the update by email open a support ticket here : https://ubotplugins.freshdesk.com/

 

Hey Aymen, serialize/deserialize doesnt work on ubot5.

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

can you please share me the amazon customer login script

BUG:

 

Http Plugin V2.5.1  has a bug if a cookie string is using " at the beginning and end of the cookie string.

The last " is not submitted.

 

 

Original Cookie Header (Browser)

cookieheader1.JPG

 

 

Cookie Header via HTTP Plugin

cookieheader2.JPG

 

 

 

This happens with Cookie Container Mode Basic and Advanced. 

And the cookie string is set correctly when I tried it with Basic mode:

 

I deleted the other cookies from the cookies string example to keep it simple in this post! In my script all of the cookies are included of course!

plugin command("HTTP post.dll""http cookies string""sess-at-acbde=\"pelx76AQE3MJgF424GEluR3XJmegeBqXUEcr5sWkTRk=\"")

 

 

It would be great if that could be fixed.

 

That's the reason why logins to certain sites (Amazon Buyer central) fails.

 

PM me if you need a script and login details to test it.

 

 

Thanks in advance for your help

Dan

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

Hi,

 

Multi part post "=" problem

 

valuename = code

value = xhs6=ewr

 

post data,

 

code=xhs6=ewr

 

http://image.prntscr.com/image/0b879e240a2f4fe4b52544be3e4e0534.png

 

Help me?

Thank you.

Link to post
Share on other sites

Hi,

 

In the HTTP get, the proxy holder won't pick up the colon and port.Example in parentheses  111.222.33(:8080)

 

Thanks.

If anyone wondering, Using saved txt files from "ScrapeBox" seems to interfere with proxies. Clean the files before adding to Ubot. That was my problem.

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

aymen,

 

this plugin support for authorization header? i try to connect dropbox api and in that documentation, i have to set authorization header. 

this is my code:

plugin command("HTTP post.dll", "http set headers", "Authorization", "Bearer <token>")
set(#dropbox,$plugin function("HTTP post.dll", "$http post", "https://api.dropboxapi.com/2/auth/token/revoke", "", $plugin function("HTTP post.dll", "$http useragent string", "Firefox 27.0 Win7 64-bit"), "", "", ""),"Global")

the result is 400 Bad Request.

 

can you or somebody help me please. i have search the solution all day but i'm stuck with it.

Link to post
Share on other sites
  • 1 month later...

aymen,

 

is http set header still working well?

 

today i use http set header to login to wordpress and when i see with fiddler. the header not work..

 

this is my code:

plugin command("HTTP post.dll", "http set headers", "Cookie", "PHPSESSID=lubkq31cvh9clt65pv*****; wordpress_test_cookie=WP+Cookie+check")
set(#LoginWPPost,$plugin function("HTTP post.dll", "$http post", "http://***.com/wp-login.php", "log=***&pwd=*****&wp-submit=Log+Masuk&redirect_to=http%3A%2F%2F***.com%2Fwp-admin%2F&testcookie=1", $plugin function("HTTP post.dll", "$http useragent string", "Firefox 27.0 Win7 64-bit"), "http://***.com/wp-login.php", "", ""),"Global")

and you can see the fiddler result:

post-28951-0-84959900-1472393697_thumb.png

 

see, the header not show in fiddler result.

 

please fixing this ... i really need this feature for my project.

 

thx.

 

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