Jump to content
UBot Underground

[SELL] HTTP POST plugin + Crazy Bonuses Inside


Recommended Posts

Yea , it is exactly like VentureOnline said !

i will be making an example tutorial on this hopefully soon along with more tutorials and source codes !

 

Sounds great!

 

Really excited for the tutorials and source codes on solving recaptcha!

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

Hey Aymen did this update add the cookie support to the download file feature?

 

no , cookie support for the download file will be in the next update as the download file command is coded differently !

Link to post
Share on other sites

Is this the issue where cookies wouldn't clear on https sites?  Or what issue with clearing cookies, exactly, was fixed?

 

-fixed a problem with clearning cookies

Link to post
Share on other sites

Is this the issue where cookies wouldn't clear on https sites?  Or what issue with clearing cookies, exactly, was fixed?

 

yea the issue of the cookies not being cleared on https sites such as twitter !

the clearing algorithm is changed so it should solve the issue

Link to post
Share on other sites

This plugin is just getting better and better and better, from an already awesome level...  Aymen's plugins (not just the HTTP POST plugin) provide true value to UBot Studio. In fact I even think that they are so good and desirable that they should be a part of the UBot Studio framework.

 

Buy with confidence. It's really a nobrainer.

Link to post
Share on other sites

Hey Aymen.

 

I tried following your tutorial video on how to  use the HTTP header addon with the HTTP Post plugin.

 

Is it possible to brake captcha using the HTTP Post plugin?

 

Here is the code of my attempt at braking decaptcher. The rest of the code works nicely. Is there a trick for captcha or it's not possible?

 

set(#username$account data("Username"), "Global")
set(#password$account data("Password"), "Global")
set(#email$account data("Email"), "Global")
set(#captcha$solve captcha(<style="display:block;">), "Global")
plugin command("HTTP post.dll""HTTP POST""http://www.addurpage.com/register.php""reg_username={#username}&reg_email={#email}&reg_password={#password}&reg_password2={#password}&recaptcha_challenge_field={#captcha}&recaptcha_response_field={#captcha}&submit=Create+user&regfrom=full""Mozilla/5.0 (Windows NT 6.1; WOW64; rv:20.0) Gecko/20100101 Firefox/20.0""http://www.addurpage.com/register.php"#test) {
}
load html(#test)

Link to post
Share on other sites

Grab the recaptcha challenge URL and view it. Should be something like this.

 

http://www.google.com/recaptcha/api/challenge?k=6LcQI8ESAAAAALN1vYQovst9c6nlU52iHdqWExp8

 

Then grab the actual challenge code which should be something like this.

 

challenge : '03AHJ_VuvsoC8nMt3QLrkJzki3A-3w63TYQ5zcGnaZuql2QhnuHBf6sGRsww4ZnobOzoPeSTE-9mbZLbll4wdWz7bAfRg4dpu92lgkmSRZa47kIuzNn_s2aQ6pcT4PCFO3tmmCLJKs69FONh2YxPSNzwAVYXK_OPiEll7ieIYxZgE5hnpr2VZGkIQ',

 

Then take the challenge code and append it to this URL like so.

 

https://www.google.com/recaptcha/api/image?c=03AHJ_VuvsoC8nMt3QLrkJzki3A-3w63TYQ5zcGnaZuql2QhnuHBf6sGRsww4ZnobOzoPeSTE-9mbZLbll4wdWz7bAfRg4dpu92lgkmSRZa47kIuzNn_s2aQ6pcT4PCFO3tmmCLJKs69FONh2YxPSNzwAVYXK_OPiEll7ieIYxZgE5hnpr2VZGkIQ

 

And there you have it :) Its a pain in the.... but it works.

I explained Recaptcha in an earlier post. It's definitely possible. It's actually the easiest captcha to deal with with the plugin. Once we can download with cookies all captchas will be possible as well.
Link to post
Share on other sites

I explained Recaptcha in an earlier post. It's definitely possible. It's actually the easiest captcha to deal with with the plugin. Once we can download with cookies all captchas will be possible as well.

 

 

Anychance you can post some working code?

 

Myself and others would really appreciate it!

 

Pretty pretty please with a cherry on top?  :wub:

Link to post
Share on other sites

Hi,
How to use Proxy with HTTP POST command ? Always get issue This operation can not be performed after request is submited :( .
Is proxy command working find ?
If I want to use HTTP Post with Proxies ( generate randomly from my proxies list ) ,  what should I do , please advice I'm pretty newbi :(

Link to post
Share on other sites

Hi,

How to use Proxy with HTTP POST command ? Always get issue This operation can not be performed after request is submited :( .

Is proxy command working find ?

If I want to use HTTP Post with Proxies ( generate randomly from my proxies list ) ,  what should I do , please advice I'm pretty newbi :(

The Proxy command should work !

What kind of errors you are getting ?

Link to post
Share on other sites

The Proxy command should work !

What kind of errors you are getting ?

Hi,

Change Proxy command works fine but I think it doesn't work with HTTP POST right ? with Proxy command I got this error" This operation can not be performed after request is submited"  . And if I want to use HTTP POST with proxy command using random proxy from one of proxies in my list , do you have any idea how to do that ?

Link to post
Share on other sites

Hi,

Change Proxy command works fine but I think it doesn't work with HTTP POST right ? with Proxy command I got this error" This operation can not be performed after request is submited"  . And if I want to use HTTP POST with proxy command using random proxy from one of proxies in my list , do you have any idea how to do that ?

Hey , if you are using the defeault Change Proxy command from ubot dev , then it won't work :)

You need to use the proxy command i've written , go to HTTP commmands and find Proxy Command !

Link to post
Share on other sites

Hey , if you are using the defeault Change Proxy command from ubot dev , then it won't work :)

You need to use the proxy command i've written , go to HTTP commmands and find Proxy Command !

Hi,

As I said it's not working dear . with Proxy command I got this error" This operation can not be performed after request is submited" . If I run node alone got error " Object Reference not set to an instance of an object "

and here is code I used with your command :(

plugin command("HTTP post.dll""Proxy""182.241.29.29:6670")

Link to post
Share on other sites

Hey man the issue is with your proxy. It doesn't work when you use it regularly either. Try this code and you'll see.

 

change proxy("182.241.29.29:6670")
navigate("http://www.yahoo.com", "Wait")

 

You need to use working proxies in order for them to work  :rolleyes:

Link to post
Share on other sites

Hi,

As I said it's not working dear . with Proxy command I got this error" This operation can not be performed after request is submited" . If I run node alone got error " Object Reference not set to an instance of an object "

and here is code I used with your command :(

plugin command("HTTP post.dll""Proxy""182.241.29.29:6670")

 

That means there is a problem with your proxy !

also the proxy command should be inside the HTTP post command

Link to post
Share on other sites

Aymen I love this plugin and it's working great and love that you update it constantly.

 

But anychance you are making a video soon to show how to handle more captchas, mainly just recaptcha.  I know VentureOnline told us how to do it in a previous thread.

 

But sometimes I just need to see some videos or working code for it to click for me.

 

I think it would help other users as well...

Link to post
Share on other sites

Aymen I love this plugin and it's working great and love that you update it constantly.

 

But anychance you are making a video soon to show how to handle more captchas, mainly just recaptcha.  I know VentureOnline told us how to do it in a previous thread.

 

But sometimes I just need to see some videos or working code for it to click for me.

 

I think it would help other users as well...

 

Yea i know i promised to record some videos for that soon , which i will , its just i was trying to find some free time to do that !

i'm usually free at the week ends so i'll take an hour when i wake up to record couple of videos including how to work with captchas , maybe release a small update too !

Link to post
Share on other sites

Yea i know i promised to record some videos for that soon , which i will , its just i was trying to find some free time to do that !

i'm usually free at the week ends so i'll take an hour when i wake up to record couple of videos including how to work with captchas , maybe release a small update too !

 

Cool.  Sounds great.  Looking forward to it!

Link to post
Share on other sites

I get this error trying to reproduce your proxy code

 

http://content.screencast.com/users/zdot34/folders/Jing/media/b3871727-b2da-4e18-b05b-fe5a49b9a4bf/2013-04-08_1717.png

Link to post
Share on other sites

I get this error trying to reproduce your proxy code

 

http://content.screencast.com/users/zdot34/folders/Jing/media/b3871727-b2da-4e18-b05b-fe5a49b9a4bf/2013-04-08_1717.png

 

Error is fixed , will send the update in few minutes from now !

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