Jump to content
UBot Underground

[SELL] HTTP POST plugin + Crazy Bonuses Inside


Recommended Posts

Update:

 

Looks like some other cookie characters also don't work correctly:

 

Browser:

cookieheader3.JPG

 

Http Plugin:

cookieheader4.JPG

 

 

Here is the cookie strong(slightly modified for security reasons)

GAPS=1:8pQ-Qxxxx-xxxxx_GQExxxxxXA:Fc1u2y_t_VlCEJAK; GALX=xxxxxx; NID=67=lV5Yir0qFpM1h3iByB0qPl_kFAszSjlp-xxxxx-l3kSszjABLNHe-xxxxxx-xxxxxx

 

As you can see the NID cookie string should be:

67=lV5....

 

 

A fix for this would be really great!

 

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

Test Script for cookie cut off:

 

plugin command("HTTP post.dll""http container") {
    plugin command("HTTP post.dll""http cookiecontainer mode""Basic")
    plugin command("HTTP post.dll""http cookies string""aymen=66=66&aymen2=\"HalloWorldCookie=99\"")
    set(#get$plugin function("HTTP post.dll""$http get""http://www.google.com"$plugin function("HTTP post.dll""$http useragent string""Chrome 32.0 Win7 64-bit"), """"""), "Global")
}
plugin command("HTTP post.dll""http container") {
    plugin command("HTTP post.dll""http cookiecontainer mode""Basic")
    plugin command("HTTP post.dll""http cookies string""aymen2=\"HalloWorldCookie=99\"&aymen=66=66")
    set(#get$plugin function("HTTP post.dll""$http get""http://www.google.com"$plugin function("HTTP post.dll""$http useragent string""Chrome 32.0 Win7 64-bit"), """"""), "Global")
}
plugin command("HTTP post.dll""http container") {
    plugin command("HTTP post.dll""http cookiecontainer mode""Basic")
    plugin command("HTTP post.dll""http cookies string""aymen2=\"HalloWorldCookie=99\"")
    set(#get$plugin function("HTTP post.dll""$http get""http://www.google.com"$plugin function("HTTP post.dll""$http useragent string""Chrome 32.0 Win7 64-bit"), """"""), "Global")
}

 

 

Just sniff the http traffic with fiddler and you will see that the cookies are not sent correctly. 

They are stripped of after the second " and/or the second =

 

Not sure if other characters are also affected.

 

I just looked at some of the websites where I had login issues in the past, and ALL of them have this cookie issue. 

So I think this is a very critical bug for all http plugin users.

 

Dan

Link to post
Share on other sites

@Aymen:

 

Here's a better test script. You will see the response in the browser directly. No need to sniff the http commuinication with fiddler or anything:

 

ui drop down("Cookie Test String""normal=normal,nid=67=123123"#teststring)
ui button("Start Test") {
    TestHttpCookie(#teststring)
}
define TestHttpCookie(#cookiestring) {
    plugin command("HTTP post.dll""http container") {
        plugin command("HTTP post.dll""http cookiecontainer mode""Basic")
        plugin command("HTTP post.dll""http cookies string"#cookiestring)
        set(#get$plugin function("HTTP post.dll""$http get""http://echo.httpkit.com/"$plugin function("HTTP post.dll""$http useragent string""Chrome 32.0 Win7 64-bit"), """"""), "Global")
        load html(#get)
    }
}

 

 

The 3 test cases that I found who are not working with http plugin (working fine with Curl):

cookieheader-example1.JPG

cookieheader-example2.JPG

cookieheader-example3.JPG

 

Link to post
Share on other sites

Got it Dan i'll look into it,

I'll see if it is my code or a limitation of the HttpWebRequest class

Great. Thanks Aymen. 

 

I C# it's working fine for me as well:

 

private void MakeRequests()
{
HttpWebResponse response;
 
if (Request_echo_httpkit_com(out response))
{
response.Close();
}
}
 
private bool Request_echo_httpkit_com(out HttpWebResponse response)
{
response = null;
 
try
{
HttpWebRequest request = (HttpWebRequest)WebRequest.Create("http://echo.httpkit.com/");
 
request.UserAgent = "curl/7.37.0";
request.Accept = "*/*";
request.Headers.Set(HttpRequestHeader.Cookie, @"nid=pel=99878979");
 
response = (HttpWebResponse)request.GetResponse();
}
catch (WebException e)
{
if (e.Status == WebExceptionStatus.ProtocolError) response = (HttpWebResponse)e.Response;
else return false;
}
catch (Exception)
{
if(response != null) response.Close();
return false;
}
 
return true;
}
 
Not sure if that's what you use as well in the plugin?
 
Dan
Link to post
Share on other sites

Ok hopefully everything has been fixed , i'll test everything tomorrow , if everything looks good i'll send out the update!

Link to post
Share on other sites

Ok hopefully everything has been fixed , i'll test everything tomorrow , if everything looks good i'll send out the update!

 

Awesome Aymen! As soon as I get my hands on it, I will release some additional tutorial videos. They are currently on hold because I can not login to those sites because of the cookie error.

 

Cheers

Dan

Link to post
Share on other sites

Ok hopefully everything has been fixed , i'll test everything tomorrow , if everything looks good i'll send out the update!

 

 

Awesome Aymen! As soon as I get my hands on it, I will release some additional tutorial videos. They are currently on hold because I can not login to those sites because of the cookie error.

 

Cheers

Dan

 

WOW cool. Can't wait

Link to post
Share on other sites
what does this error mean?

during a http  get

loading the html it shows me this:

"The underlying connection was closed: An unexpected error occurred on a receive."

 

When using a private proxy btw with user and pass...

Link to post
Share on other sites

Ok hopefully everything has been fixed , i'll test everything tomorrow , if everything looks good i'll send out the update!

 

Great news. Thank you for updating all the stuff. 

Link to post
Share on other sites

 

what does this error mean?
during a http  get
loading the html it shows me this:
"The underlying connection was closed: An unexpected error occurred on a receive."
 
When using a private proxy btw with user and pass...

 

 

The cookie error I mentioned in this thread is related to some special cookie strings who are not passed correctly by the http plugin. 

For get and post requests. But your error message sounds like something different. 

 

Without seeing your code it's hard to tell what the problem is. I highly recommend to look at the http communication with a webdebugger like fiddler. That will give you a lot of details for troubleshooting. 

 

Dan

Link to post
Share on other sites

The cookie error I mentioned in this thread is related to some special cookie strings who are not passed correctly by the http plugin. 

For get and post requests. But your error message sounds like something different. 

 

Without seeing your code it's hard to tell what the problem is. I highly recommend to look at the http communication with a webdebugger like fiddler. That will give you a lot of details for troubleshooting. 

 

Dan

bro the code is not anything special, its just a set variable with a http get inside of it, and inside this get request the target site and a ip:port:user:pass proxy

set(#a, $plugin function("HTTP post.dll", "$http get", "http://twitter.com", "", "", "put your private proxy here", ""), "Global")
load html(#a)

Link to post
Share on other sites

 

bro the code is not anything special, its just a set variable with a http get inside of it, and inside this get request 

set(#a, $plugin function("HTTP post.dll", "$http get", "http://twitter.com", "", "", "put your private proxy here", ""), "Global")
load html(#a)

I did not mean that your code is special :-)  

I thought you asked for the cookie error. But I understood your first post wrong. Sorry.

 

I just tested http get with one of my proxy servers and it worked fine. So this is probably related to your proxy server somehow. 

Try to use the proxy in your browser and test if you can access some websites. 

 

Dan

Link to post
Share on other sites

I did not mean that your code is special :-)  

I thought you asked for the cookie error. But I understood your first post wrong. Sorry.

 

I just tested http get with one of my proxy servers and it worked fine. So this is probably related to your proxy server somehow. 

Try to use the proxy in your browser and test if you can access some websites. 

 

Dan

Did you test with a private proxy?

btw my proxy works with a normal browser

Link to post
Share on other sites

I think that could be the problem. Public proxies always have an issue. And it's not one of the top things looked upon too. smile2.png

mate i was refering to private proxies, public ones work well for me

Link to post
Share on other sites

Did you test with a private proxy?

btw my proxy works with a normal browser

 

I just tested it with a private proxy yes. It's working fine for me With authentication and also without proxy authentication.

 

Dan

Link to post
Share on other sites

Http Post Plugin Update 2.5.2 Log :

-Removed container mode - plugin should work without the container (command still exists so you can update your current projects , but will be removed in the next version)
-Fixed cookies duplication issue
-Fixed cookies sometimes trimming second '=' in the cookie string
-Added command http clear objects (used to collect used objects in threads to reduce memory usage , should be called just before closing a thread)
-Some minor fixes and improvements

PS : make sure to run a fair amount of tests on this version before deploying in your current projects , I've done my tests but there may be few problems i left behind!

Link to post
Share on other sites

Http Post Plugin Update 2.5.2 Log :

 

-Removed container mode - plugin should work without the container (command still exists so you can update your current projects , but will be removed in the next version)

-Fixed cookies duplication issue

-Fixed cookies sometimes trimming second '=' in the cookie string

-Added command http clear objects (used to collect used objects in threads to reduce memory usage , should be called just before closing a thread)

-Some minor fixes and improvements

 

PS : make sure to run a fair amount of tests on this version before deploying in your current projects , I've done my tests but there may be few problems i left behind!

Thanks Aymen. I will run a couple of tests :-)

 

Dan

Link to post
Share on other sites

Http Post Plugin Update 2.5.2 Log :

 

-Removed container mode - plugin should work without the container (command still exists so you can update your current projects , but will be removed in the next version)

-Fixed cookies duplication issue

-Fixed cookies sometimes trimming second '=' in the cookie string

-Added command http clear objects (used to collect used objects in threads to reduce memory usage , should be called just before closing a thread)

-Some minor fixes and improvements

 

PS : make sure to run a fair amount of tests on this version before deploying in your current projects , I've done my tests but there may be few problems i left behind!

 

what is this "used objects" is all about Aymen?

Link to post
Share on other sites

what is this "used objects" is all about Aymen?

 

C# is an object oriented programming language when you create a new variable you pretty much created a new object!

Link to post
Share on other sites

i still have not got this plugin to work for me ui text etc..  will not show after i compile idk why it does it one other plugins as well even if this plugin is the only one i have installed 

Link to post
Share on other sites

i still have not got this plugin to work for me ui text etc..  will not show after i compile idk why it does it one other plugins as well even if this plugin is the only one i have installed 

Upload your code and the compiled bot.

 

Dan

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