Jump to content
UBot Underground

[SELL] HTTP POST plugin + Crazy Bonuses Inside


Recommended Posts

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:

attachicon.gifset header http post not work.png

 

see, the header not show in fiddler result.

 

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

 

thx.

 

Cookies are not managed via the header command. There are special cookie commands and functions in the plugin.

Please take a look at all the different options.

 

Example:

plugin command("HTTP post.dll", "http cookies string", "")

plugin command("HTTP post.dll", "http add cookie", "", "", "", "", "")

 

cheers

Dan

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

Cookies are not managed via the header command. There are special cookie commands and functions in the plugin.

Please take a look at all the different options.

 

Example:

plugin command("HTTP post.dll", "http cookies string", "")

plugin command("HTTP post.dll", "http add cookie", "", "", "", "", "")

 

cheers

Dan

 

dan, thx for your reply.

 

i have try the options but still not work. the result in fiddler is same. the cookie:***** is not show

do you have another suggestion?

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

I'm having this same issue as well.

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

hi aymen,

 

xpath parser is not working now. can you check and fixing please?

 

this is my script:

set(#HttpDetailProduct,$plugin function("HTTP post.dll", "$http get", "https://www.tokopedia.com/f-a-store89/tas-selempang-tas-paha-tas-pinggang-pria-1btc-150", $plugin function("HTTP post.dll", "$http useragent string", "Chrome 32.0 Win7 64-bit"), "https://www.tokopedia.com", "", ""),"Global")
alert($plugin function("HTTP post.dll", "$xpath exists", #HttpDetailProduct, "//span[@itemprop=\'price\']"))
alert($plugin function("HTTP post.dll", "$xpath parser", #HttpDetailProduct, "//span[@itemprop=\'price\']", "innerText", "HTML"))

note: my HTTP POST plugin version is 2.6.0.0

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

hi aymen,

 

xpath parser is not working now. can you check and fixing please?

 

this is my script:

set(#HttpDetailProduct,$plugin function("HTTP post.dll", "$http get", "https://www.tokopedia.com/f-a-store89/tas-selempang-tas-paha-tas-pinggang-pria-1btc-150", $plugin function("HTTP post.dll", "$http useragent string", "Chrome 32.0 Win7 64-bit"), "https://www.tokopedia.com", "", ""),"Global")
alert($plugin function("HTTP post.dll", "$xpath exists", #HttpDetailProduct, "//span[@itemprop=\'price\']"))
alert($plugin function("HTTP post.dll", "$xpath parser", #HttpDetailProduct, "//span[@itemprop=\'price\']", "innerText", "HTML"))

note: my HTTP POST plugin version is 2.6.0.0

 

I think it's more related to the HTTPS Site. The current version doesn't support all the latest SSL algorythms.

So you should check if the html data is really downloaded and available in that variable.

 

You can also use Fiddler to trace the http request and check if there are any errors.

 

PS: Aymen has a fix for that SSL issue already. BUt I'm not sure if he made it available to everyone already.

 

Regards

Dan

Link to post
Share on other sites

Is that the same package as the paid video tutorials we paid? Any reason why you make it free?

Yes, that's the old Http Plugin Tutorials Series. There are many reasons why I'm doing this, but I don't want to share my business decisions publicly.

But you can always email me or send a support ticket if you have specific questions and want to discuss something.

 

Thanks a lot for your understanding.

 

Kindest regards

Dan

Link to post
Share on other sites

Yes, that's the old Http Plugin Tutorials Series. There are many reasons why I'm doing this, but I don't want to share my business decisions publicly.

But you can always email me or send a support ticket if you have specific questions and want to discuss something.

 

Thanks a lot for your understanding.

 

Kindest regards

Dan

 

I am asking because previously we are paying for that. Sometimes it feels strange :)

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

having an issue with the "Regex to list" function...

 

This regex is fine:

([a-zA-Z0-9]){16}

 

parses as should, pulls the info i need off the page, BUT i need it to  only pick up the  16 digit string ({16}) IF it has no whitespaces in the grouping.

 

so i tried using

([a-zA-Z0-9\S]){16}

 

which after i hit the "OK" button to stop editing, it becomes

"([a-zA-Z0-9\S])\{16\}"

 

as you can see, there are several "\" that insert themselves into the forumla once OK'd.  I tried doing it in the code view mode, but  ran into a plugin error.  It wont seem to accept the code I want it to without inserting a bunch of \ into it.

 

I've tried wrapping  the string manually in quotations, as well as used the uBot built in quotation wrappers to no avail.  help?

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

having an issue with the "Regex to list" function...

 

This regex is fine:

([a-zA-Z0-9]){16}

 

parses as should, pulls the info i need off the page, BUT i need it to  only pick up the  16 digit string ({16}) IF it has no whitespaces in the grouping.

 

so i tried using

([a-zA-Z0-9\S]){16}

 

which after i hit the "OK" button to stop editing, it becomes

"([a-zA-Z0-9\S])\{16\}"

 

as you can see, there are several "\" that insert themselves into the forumla once OK'd.  I tried doing it in the code view mode, but  ran into a plugin error.  It wont seem to accept the code I want it to without inserting a bunch of \ into it.

 

I've tried wrapping  the string manually in quotations, as well as used the uBot built in quotation wrappers to no avail.  help?

 

Ubot has always been weird about that specific part of regex, try this as a workaround:

([a-zA-Z0-9\S]){16,16}

Aymen is no longer providing support for http post plugin time to move on if any errors or problems are wrong.

 

There was an update in October for a plugin that has been out for nearly 4 years and doesn't really need many updates. If you have a question feel free to ask here and maybe somebody can help.

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

There was an update in October for a plugin that has been out for nearly 4 years and doesn't really need many updates. If you have a question feel free to ask here and maybe somebody can help.

Aymen also has a private update for a HTTPS issue. Because some websites don't allow old SSL algorithms anymore. And the "old" plugin version didn't support that.

But I'm not sure if he already released the HTTPS / SSL update. 

 

So if you get weird error messages when you execute a get or post request against an SSL encrypted site (HTTPS), then ask him for the updated version.

Dan

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

Aymen also has a private update for a HTTPS issue. Because some websites don't allow old SSL algorithms anymore. And the "old" plugin version didn't support that.

But I'm not sure if he already released the HTTPS / SSL update. 

 

So if you get weird error messages when you execute a get or post request against an SSL encrypted site (HTTPS), then ask him for the updated version.

Dan

 

Do you know if this update been added to version 2.6.2v2 ?

 

Thanks,

Marton

Link to post
Share on other sites
  • 2 weeks later...
Anyone here knows how to send = in Aymen Http plugin with Upload? Works with post as a parameter, but with upload it won't work

tried encoding it, decoding it (%3D)... the plugin doesn't want to send = , and I need it for a token

Ty

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

Can anyone post a sample code of a working http get request for a single page at Zomato? Something like this page https://www.zomato.com/sydney/koi-dessert-bar-chippendale

 

I have been trying to access it with http get but no matter what it always times out. I have sniffed out the headers from Chrome and placed them in bot but it didn't help. Setting the cookie from Chrome also didn't result in getting a response back. I am able to access the site from normal browsers, exbrowser, and Scrapy in python. Only http get requests time out. Below is my sample code that doesn't seem to work. 

plugin command("HTTP post.dll", "http keep alive", "Yes")
plugin command("HTTP post.dll", "http set headers", "Accept", "text/html,application/xhtml xml,application/xml;q=0.9,image/webp,*/*;q=0.8")
plugin command("HTTP post.dll", "http set headers", "Accept-Encoding", "gzip, deflate, sdch, br")
plugin command("HTTP post.dll", "http set headers", "Accept-Language", "en-US,en;q=0.8")
plugin command("HTTP post.dll", "http cookies string", "zl=en; fbtrack=c9b87b62a944cb44d3f4b6907e9eefd3; dpr=1; PHPSESSID=75152101f053c75c9f91925738918d90a527a51f; fbcity=260; _ga=GA1.2.947294597.1478203272; __utmx=141625785.FQnzc5UZQdSMS6ggKyLrqQ$0:NaN; __utmxx=141625785.FQnzc5UZQdSMS6ggKyLrqQ$0:1490151181:8035200; __jpuri=https://www.zomato.com/sydney/koi-dessert-bar-chippendale; ak_bmsc=EFE1155AFDF526C6D0FEF2BADDE722AE3CFE8FD05C5B00000CE7D158825F2E71~plPnHtUP9Eg7GL7FZBj6zyh2jTSyRjsCvRZyiAKUE2/lg9N8CiWhwGc0YJlVh84nQY6VoAqi/fkx0JupxPpfSYxhgXMuWchWw09s1CLhFtYIkFE5rNSdzykEMe7rca+ecfozjlmF/lBsb8imttQq4auYDhAgAQfJx+X7OdiiGtm8z10WicD1/hpHqnvToa+JTWcizNi6djP4gV+izhoGgF9g==")
plugin command("HTTP post.dll", "http set headers", "Pragma", "akamai-x-cache-on, akamai-x-cache-remote-on, akamai-x-check-cacheable, akamai-x-get-cache-key, akamai-x-get-extracted-values, akamai-x-get-ssl-client-session-id, akamai-x-get-true-cache-key, akamai-x-serial-no, akamai-x-get-request-id,akamai-x-get-nonces,akamai-x-get-client-ip,akamai-x-feo-trace")
plugin command("HTTP post.dll", "http set headers", "Upgrade-Insecure-Requests", 1)
set(#soup,$plugin function("HTTP post.dll", "$http get", "https://www.zomato.com/sydney/koi-dessert-bar-chippendale", "Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36", "https://www.zomato.com/", "", ""),"Global")

If anyone could point me in the right direction that would be an incredible help. 

 

Link to post
Share on other sites

does http support unicode french and chinese now?

<a href="https://www.amazon.com/Best-Sellers-Home-Kitchen-Décor-Products/zgbs/home-garden/1063278/ref=zg_bs_nav_hg_1_hg">HomeDécor</a>

 

i can not get a href link like this

 

anyone please help me,

 

thanks

Link to post
Share on other sites
  • 3 weeks later...
  • 3 months later...

Have been waiting for 36+ hours after purchased, support ticket sent but dont have respond, cant contact Aymen via forum PM, any suggestion except refund? :unsure:

Link to post
Share on other sites

sent a mail to : aymenbnr@gmail.com  he will respond in 24 hours.

Have been waiting for 36+ hours after purchased, support ticket sent but dont have respond, cant contact Aymen via forum PM, any suggestion except refund? :unsure:

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

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