Jump to content
UBot Underground

[SELL] HTTP POST plugin + Crazy Bonuses Inside


Recommended Posts

Im very interested on this. Please send me pay details. I will buy it ASAP.

 

Hey Thanks for your interest , there is a link on the main post of this thread!

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

Hi aymen,

 

Command Http post result   not equal to  paramaters $http post result

 

Video :

 

http://screencast.com/t/b4ETdAwh

 

 

code:

set(#expressusername, "nosyquilt78871", "Global")
plugin command("HTTP post.dll", "new cookies containers", 1)
thread {
    in new browser {
        plugin command("HTTP post.dll", "http container") {
            plugin command("HTTP post.dll", "http set encoding", "Default")
            set(#expressraporurl1, "http://research.tmtfactory.com/index.php", "Local")
            plugin command("HTTP post.dll", "HTTP POST", "{#expressraporurl1}/member/memberlist/", "group_id=0&order_by=join_date&sort_order=desc&row_limit=200", "Mozilla/5.0 (Windows NT 6.1; rv:23.0) Gecko/20100101 Firefox/23.0", "{#expressraporurl1}/member/memberlist/", #raporexpo1) {
            }
            load html(#raporexpo1)
        }
    }
}
plugin command("HTTP post.dll", "new cookies containers", 1)
plugin command("HTTP post.dll", "http container") {
    plugin command("HTTP post.dll", "http set encoding", "Default")
    set(#expressraporurl1, "http://www.literacytexas.org/index.php", "Local")
    set(#post dene, $plugin function("HTTP post.dll", "$http post", "{#expressraporurl1}/member/memberlist/", "group_id=0&order_by=join_date&sort_order=desc&row_limit=200", "Mozilla/5.0 (Windows NT 6.1; rv:23.0) Gecko/20100101 Firefox/23.0", "{#expressraporurl1}/member/memberlist/", "", ""), "Local")
    load html(#post dene)
}


Link to post
Share on other sites

the HTTP POST command is not being updated , i'll remove it in the next update

use the $http post command instead

 

 

$http post command result Wrong

 

HTTP POST command result right

Link to post
Share on other sites

I have a question about xpath.

 

The xpath parser is not acting how I would think it would.

 

My xml doc:

 <?xml version="1.0" encoding="UTF-8"?>

  <FindPopularSearchesResponse>
   <Timestamp>2013-09-11T02:34:46.176Z</Timestamp>
   <Ack>Success</Ack>
   <Build>E839_CORE_APILW2_16349230_R1</Build>
   <Version>839</Version>
   <PopularSearchResult>
    <CategoryID>11116</CategoryID>
    <CategoryParentID>11116</CategoryParentID>
    <QueryKeywords>gold</QueryKeywords>
    <AlternativeSearches>silver;platinum;gold nugget;pure gold;wtc recovery;gold perth mint</AlternativeSearches>
    <RelatedSearches>silver dimes;panda;australia gold;1987 panda;gold indian;brazil gold;silver bar;gold pin;cc;1 10 gold;eagle;silver maple;gold gulden;gold coins</RelatedSearches>
    <CategoryName>Coins & Paper Money</CategoryName>
    <CategoryParentName>Coins & Paper Money</CategoryParentName>
   </PopularSearchResult>
  </FindPopularSearchesResponse>
 

I want to select <AlternativeSearches> and <RelatedSearches> So I use

set(#results, $plugin function("HTTP post.dll", "$xpath parser", #data, "//AlternativeSearches | //RelatedSearches", "InnerText"), "Global")

but that doesn't work. It works in other online xpath testers so not sure what I'm doing wrong.

Link to post
Share on other sites

Hey Sorry i didn't see your message!

i'm afraid the xpath parser will only work on html documents!

for xml content you can use the xml parser in my ubot xml plugin !

set(#results, $plugin function("xml plugin.dll", "$xml parser", "<?xml version=\"1.0\" encoding=\"UTF-8\"?>

  <FindPopularSearchesResponse>
   <Timestamp>2013-09-11T02:34:46.176Z</Timestamp>
   <Ack>Success</Ack>
   <Build>E839_CORE_APILW2_16349230_R1</Build>
   <Version>839</Version>
   <PopularSearchResult>
    <CategoryID>11116</CategoryID>
    <CategoryParentID>11116</CategoryParentID>
    <QueryKeywords>gold</QueryKeywords>
    <AlternativeSearches>silver;platinum;gold nugget;pure gold;wtc recovery;gold perth mint</AlternativeSearches>
    <RelatedSearches>silver dimes;panda;australia gold;1987 panda;gold indian;brazil gold;silver bar;gold pin;cc;1 10 gold;eagle;silver maple;gold gulden;gold coins</RelatedSearches>
    <CategoryName>Coins & Paper Money</CategoryName>
    <CategoryParentName>Coins & Paper Money</CategoryParentName>
   </PopularSearchResult>
  </FindPopularSearchesResponse>", "//AlternativeSearches | //RelatedSearches"), "Global")

Link to post
Share on other sites

What are you looking to do exactly ?

If it is scraping , then yes you can !

 

This is what I am trying to do, if anybody has gotten it please let me know. I can't seem to get logged in properly I think it may have to do with the http container but I'm not really sure.

Link to post
Share on other sites

any news on the http container? Or is there any workaround to multithread multiple logins?

 

 

Also would like to know about this.

 

i will have something for this soon , i just need to finish few things first !

I'm working on a new update for the http post plugin including a fix for the http container!

  • Like 2
Link to post
Share on other sites

i will have something for this soon , i just need to finish few things first !

I'm working on a new update for the http post plugin including a fix for the http container!

 

Please do not forget to fix the problem. Login wordpress 3.6.

Link to post
Share on other sites

i will have something for this soon , i just need to finish few things first !

I'm working on a new update for the http post plugin including a fix for the http container!

 

Thanks for the update. I can't wait! :)

 

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

Update 2.4

 

update log :

 

-Added set max redirects command (setting your own max redirections)
-Added accept charset command (set your own accept charset header)
-Added Accept Encoding command (set your own accept encoding header)
-Added Keep alive command (yes to keep the connection alive or no for closing connection)
-Minor Fixes to the http container
-added tcpclient function (i'll post a video about this soon , this will basically will post a raw header request to the server using tcpclient , a bit advanced)
-Moved all functions/commands to my own Category (starts with Aymen)
-added ability to choose between page or post in xmlrpc poster function

 

Check your emails for the update

 

Enjoy :)

  • Like 2
Link to post
Share on other sites

i forgot to say starting from the last update (2.4) , make sure to put all the http commands and function , inside a http container , to make sure there is no problems !

  • Like 1
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...