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

I am trying to use http get on a site which is using cloudflare, but it gives me 503 Error.

 

Any ideas?

 

Thanks

Can be a million things.

Missing headers, missing cookies. 

Before or after login? 

 

It's really help with questions like that, because this has to be debugged with a web debugger. 

 

Use a tool like fiddler or httpanalyzer and compare the http request you generate in your browser (where it works), with the one from ubot (where it's not working).

And then try to reproduce every single thing with your ubot HTTP request. All headers, all cookies. 99% of the time, something is missing.

 

If all the necessary data is there and the webserver has no error, it will work with http plugin.

 

Also look at the browser header. And if you use proxy servers, that could be a problem as well. Some websites block that. Some websites have http protection via javascript and other stuff. 

So it's really hard to say without debugging the code step by step.

 

Dan

Link to post
Share on other sites

Hi ayemen,

 

I have sent you a PM regarding the http post plugin update 24 hours ago that they have not received to my email. The version that I have is 2.5.5, can you kindly look into the same and send me a PM or email me the  latest update as I need to compile a bot for client and without the latest update it shows error

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

If you purchased via zaxxa, you can login there and access everything. If you're and old customer, please send me your payment details (PayPal email and date of purchase) to our support address (support(ad)bot-factory.com

 

Dan

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

I paid and am waiting for the package. Could you send it please?

I don't login much to the forum these days (busy , business trips) , so to reach me you have to either send me an email or leave me a skype message !

So if you already sent me an email or a skype message you would have your package by now!

 

Let me know

Link to post
Share on other sites

Does anyone have an updated wordpress login with HTTP code example? The one in the HTTP post plugin doesn't work and have tried to debug it but not getting any results. The error is on the actual login URL line, the format or plugin command, etc.

 

Thanks for any help!

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

I am trying the following commands and xpath parser is not working.

Xpath exists return turn and the html is: <input value="2566185015834482276" type="hidden" name="_dynSessConf">

set(#post,$plugin function("HTTP post.dll", "$http get", "https://www.finishline.com/store/my_account/signin.jsp", $plugin function("HTTP post.dll", "$http useragent string", "Chrome 32.0 Win7 64-bit"), "http://www.google.com", "", ""),"Global")
alert($plugin function("HTTP post.dll", "$xpath exists", #post, "//input[@name=\'_dynSessConf\']"))
alert($plugin function("HTTP post.dll", "$xpath parser", #post, "//input[@name=\'_dynSessConf\']", "value", "HTML"))

Link to post
Share on other sites

 

I am trying the following commands and xpath parser is not working.

Xpath exists return turn and the html is: <input value="2566185015834482276" type="hidden" name="_dynSessConf">

set(#post,$plugin function("HTTP post.dll", "$http get", "https://www.finishline.com/store/my_account/signin.jsp", $plugin function("HTTP post.dll", "$http useragent string", "Chrome 32.0 Win7 64-bit"), "http://www.google.com", "", ""),"Global")
alert($plugin function("HTTP post.dll", "$xpath exists", #post, "//input[@name=\'_dynSessConf\']"))
alert($plugin function("HTTP post.dll", "$xpath parser", #post, "//input[@name=\'_dynSessConf\']", "value", "HTML"))

 

Works fine for me.

Xpath exists returns true if the element exists and false if not. So that's correct.

And the parser also extracts the value attribute correctly.

 

So no problem at all.

 

Dan

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

I am trying to http get https://www.endclothing.com/us/customer/account/create/

and cloudflare return 503 The remote server returned an error: (503) Server Unavailable.

Any idea how to pass the 5 seconds redirection?

 

Edit:

Cloudflare 503 error set those cookies

Response sent 132 bytes of Cookie data:
Set-Cookie: __cfduid=d2b0605f06fa567bab50e7af7dea76b7b1448305631; expires=Tue, 22-Nov-16 19:07:11 GMT; path=/; domain=.endclothing.com; HttpOnly
 
If you go the the link again it work. But the problem is that i can' t capture those cookies with http post plugin.
 
Edit 2:
I have found the solution
Edited by heopas
Link to post
Share on other sites
  • 3 weeks later...

https://www.zoho.com/mail/login.html

 

for this site

 

test email: iwanttotestit@zoho.com

test password:  password123

 

how can i get the redirect link after you try to login , the link should like this . https://accounts.zoho.com/unconfirmed?action=ui&user=f5c0a89e3ce4fe975b16e5e94608dd65f6b658133363dddf8d4f3e381feaab29bb19638bc1a503440d18b0c3981883a4&serviceurl=https://mail.zoho.com&servicename=VirtualOffice

 

 

here some the code i have done

plugin command("HTTP post.dll", "Clear Cookies", "http://zoho.com")
plugin command("HTTP post.dll", "Clear Cookies", "https://accounts.zoho.com/")
set(#loginpage,$plugin function("HTTP post.dll", "$http get", "https://accounts.zoho.com/login?servicename=ZohoHome&hidesignup=true&&hide_secure=true&css=https://www.zoho.com/css/prd-sign.css", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:42.0) Gecko/20100101 Firefox/42.0", "https://www.zoho.com/login.html", "", ""),"Global")
set(#login page cookies response,$plugin function("HTTP post.dll", "$http response", "cookies response"),"Global")
set(#iamcsr,$find regular expression(#login page cookies response,"(?<=iamcsr=).*(?=; Path=/; Secure,stk=)"),"Global")
set(#trylogin,$plugin function("HTTP post.dll", "$http post", "https://accounts.zoho.com/login?servicename=ZohoHome&hidesignup=true&&hide_secure=true&css=https://www.zoho.com/css/prd-sign.css", "LOGIN_ID=iwanttotestit%40zoho.com&PASSWORD=password123&IS_AJAX=true&remember=2592000&iamcsrcoo={#iamcsr}", "Mozilla/5.0 (Windows NT 6.3; WOW64; rv:42.0) Gecko/20100101 Firefox/42.0", "https://accounts.zoho.com/login?servicename=ZohoHome&hidesignup=true&&hide_secure=true&css=https://www.zoho.com/css/prd-sign.css", "", ""),"Global")

Link to post
Share on other sites


plugin command("HTTP post.dll", "http auto redirect", "Yes")
plugin command("HTTP post.dll", "http keep alive", "Yes")
plugin command("HTTP post.dll", "http set headers", "Upgrade-Insecure-Requests", 1)
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-Language", "en-US,en;q=0.8,el;q=0.6")
plugin command("HTTP post.dll", "http settings headers", "Accept Encoding", "gzip, deflate, sdch")
plugin command("HTTP post.dll", "http cookiecontainer mode", "Basic")
plugin command("HTTP post.dll", "http cookies string", "end_country=US;")
set(#get,$plugin function("HTTP post.dll", "$http get", "http://www.endclothing.com/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36", "", "", 20),"Local")
plugin command("HTTP post.dll", "http cookies string", "end_country=US; {$plugin function("HTTP post.dll", "$http response", "cookies response")}")
set(#get,$plugin function("HTTP post.dll", "$http get", "https://www.endclothing.com/us/customer/account/login/", "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.80 Safari/537.36", "http://www.endclothing.com/us/", "", 20),"Local")


if you run this with fiddler ON and <client>;ssl3;tls1.0;tls1.1;tls1.2 protocols everything works fine

if i close the fiddler Error appear:

The request was aborted: Could not create SSL/TLS secure channel

Link to post
Share on other sites

If anyone needs support or have a question please use my official Ubot Plugins support desk here : https://ubotplugins.freshdesk.com/

I'm not on the forum regularly so chances that i won't be able to help you on time , please use the support desk for faster replies!

 

Regards

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

are you doing multithreading using same ip for each thread?

 

 

test pls, multi thread don't Working.

thread {
    set(#post1, $plugin function("HTTP post.dll", "$http get", "http://bing.com", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0", "", "", ""), "Local")
    set(#cookie, $plugin function("HTTP post.dll", "$http response", "cookies response"), "Local")
    add item to list(%ddddddd, #cookie, "Delete", "Global")
}
thread {
    set(#post1, $plugin function("HTTP post.dll", "$http get", "https://www.fiverr.com/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0", "", "", ""), "Local")
    set(#cookie, $plugin function("HTTP post.dll", "$http response", "cookies response"), "Local")
    add item to list(%ddddddd, #cookie, "Delete", "Global")
}
thread {
    set(#post1, $plugin function("HTTP post.dll", "$http get", "http://www.ubotstudio.com/resources", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0", "", "", ""), "Local")
    set(#cookie, $plugin function("HTTP post.dll", "$http response", "cookies response"), "Local")
    add item to list(%ddddddd, #cookie, "Delete", "Global")
}
thread {
    set(#post1, $plugin function("HTTP post.dll", "$http get", "https://warriorforum.com/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0", "", "", ""), "Local")
    set(#cookie, $plugin function("HTTP post.dll", "$http response", "cookies response"), "Local")
    add item to list(%ddddddd, #cookie, "Delete", "Global")
}

1 thread working

thread {
    set(#post1, $plugin function("HTTP post.dll", "$http get", "http://bing.com", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0", "", "", ""), "Local")
    set(#cookie, $plugin function("HTTP post.dll", "$http response", "cookies response"), "Local")
    add item to list(%ddddddd, #cookie, "Delete", "Global")
}
wait(3)
thread {
    set(#post1, $plugin function("HTTP post.dll", "$http get", "https://www.fiverr.com/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0", "", "", ""), "Local")
    set(#cookie, $plugin function("HTTP post.dll", "$http response", "cookies response"), "Local")
    add item to list(%ddddddd, #cookie, "Delete", "Global")
}
wait(3)
thread {
    set(#post1, $plugin function("HTTP post.dll", "$http get", "http://www.ubotstudio.com/resources", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0", "", "", ""), "Local")
    set(#cookie, $plugin function("HTTP post.dll", "$http response", "cookies response"), "Local")
    add item to list(%ddddddd, #cookie, "Delete", "Global")
}
wait(3)
thread {
    set(#post1, $plugin function("HTTP post.dll", "$http get", "https://warriorforum.com/", "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:43.0) Gecko/20100101 Firefox/43.0", "", "", ""), "Local")
    set(#cookie, $plugin function("HTTP post.dll", "$http response", "cookies response"), "Local")
    add item to list(%ddddddd, #cookie, "Delete", "Global")
}

Link to post
Share on other sites

for ubot variables to be local they need to be in a define try adding each thread part of your code into a define.

 

Thank you Kev123

 

Pls sample code?

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