Jump to content
UBot Underground

[Sell] - Http Plugin Tutorial Video Series


Recommended Posts

Dan,  bought this a while ago and forgot to say this but...

 

This is some amazing training.  I had been using Ubot for a long time and wanted to use Aymen's HTTP post plugin for a long time but had no clue where to start.  I love the actual use cases for various sites that you use and your very easy to follow course flow.  Thanks for putting this together.   

Awesome! Love to hear that kind of feedback. 

 

That always adds energy to my tank and allows me to work on additional stuff :-)

 

Cheers

Dan

Link to post
Share on other sites
  • Replies 270
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

Instant Access to 4 hours and 27 Minutes of Training Videos!       Introduction Video Http Plugin Command Overview HTTP Command Overview HTTP Post / Get Basics Tools - Edit this Cookie Tools - Notepad

Bonus Video 5 is ready:   Xing-Recaptcha-AccountCreator In this video we will create an account creator bot for xing.com And solve a tricky recaptcha image during that process  

Update:   After purchase you can now download the complete Tutorial videos as a ZIP file (750MB) So no need to login to our site and download each video one by one. Or to watch video streams with all

hi dan

ive been watching some of the google oauth videos but i can not seem to translate it to twitter.

i was hoping that if you could find time could you do one on twitter?

thanx

stanf

Link to post
Share on other sites

hi dan

ive been watching some of the google oauth videos but i can not seem to translate it to twitter.

i was hoping that if you could find time could you do one on twitter?

thanx

stanf

Thanks a lot for your suggestion. I will probably create a new HTTP Tutorial series in the future. Version 2.0

But I have to finish some other projects.

 

But Twitter has a very good documentation about their authentication process:

https://dev.twitter.com/oauth/application-only

 

If you have specific questions, you can always send me a PM. I can not look into the complete thing right now, but if there is something special you struggle with, just let me know.

Dan

Link to post
Share on other sites

what i dont understand is how to write the post code to present the consumer keys

Hello Stanf,

 

the step is explained on the following site:

https://dev.twitter.com/oauth/application-only

 

1. URL encode consumer key and consumer secret

2. Put them together into one string separated by :

3. base64 encode that string

 

4. Send a http post request to: https://dev.twitter.com/oauth/reference/post/oauth2/token

5. Send the encoded string (Step3) as authentication header

6. Send content type header: application/x-www-form-urlencoded;charset=UTF-8.

7. Send http post body: grant_type=client_credentials

 

 

That's basically all you have to do. 

 

Where exactly do you struggle?

 

Dan

 

Link to post
Share on other sites

dan i dont mean to bug you, but when you get time can you debug this.

----------------------------------------------------

the error i get

  Specified value has invalid HTTP Header characters. Parameter name: name

 

twitter test dan.ubot

Link to post
Share on other sites

 

dan i dont mean to bug you, but when you get time can you debug this.

----------------------------------------------------

the error i get

  Specified value has invalid HTTP Header characters. Parameter name: name

 

 

I took a quick look:

 

1. remove http container. That's not longer user with http plugin

2. Authentication and Content-Type are HEADERS. They don't go into the post body. You have to use the set headers command.

 

Cheers

Dan

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

hi Dan,

 

any video for scraping anything with http post is included?

Hello.

 

What exactly are you looking for? There are a couple of tutorials where we have to extract data from a site. 

But scraping in general isn't very tricky. You load a site via http get. And then you use xpath or regex to extract the data you need. 

 

So from a http plugin point of view, this is very basic. Not much to teach here.

 

Xpath and regex are of course a different thing. But i'm not teaching you Xpath and regex in this tutorial. But you will of course see a couple of examples where I use Xpath or regex to extract values from a site. 

 

But please give me some more details what you are looking for and I'll look into it.

 

Dan

Link to post
Share on other sites

Hi Dan,

 

Here is some sample that hope covered in the videos because I need this:

  1. Check available domain based on keyword
  2. Scraping images with http plugin
  3. Translating contain with http plugin so it's become more faster
  4. Scraping inbound and outbound link from some page
  5. Outbound link checker with http plugin
  6. Internal broken link checker
  7. Mass url shortener
  8. Whoise scraper
  9. posting in special CMS (I send you PM contain sample)

Cheers

Link to post
Share on other sites

Hi Dan,

 

Here is some sample that hope covered in the videos because I need this:

 

  • Check available domain based on keyword
  • Scraping images with http plugin
  • Translating contain with http plugin so it's become more faster
  • Scraping inbound and outbound link from some page
  • Outbound link checker with http plugin
  • Internal broken link checker
  • Mass url shortener
  • Whoise scraper
  • posting in special CMS (I send you PM contain sample)
Cheers
This is all covered. Well not the source code so that you can copy and paste without doing the work. But you probably don't expect that from a training tutorial right?

But i'll teach you all the methods and tactics how to analyze those sides and build the code on your own.

 

You are not getting a finished meal here. You will learn how to cook. But you still have to cook the meal yourself.

 

If there is a specific http challange on one of those sites, send me the details. Together with your source code and where you struggle and I will definitely take a look.

 

Dan

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

Hi dan,

 

http post - Login site and problem;

 

window.location.href = "/";

 

site: ask.fm

 

solve?

I'm very sorry Sahin, but I'm not quite sure what your question is?

I never worked with ask.fm. So I can't give you any advice for that site. 

 

But if you have a specific http plugin questions, please post it here. And please add some source code where we can directly see your problem.

Thanks

Dan

Link to post
Share on other sites

>> Important <<

I'm sending all important information's and updates via Email (Getresponse).
When you purchase something from me, you will be added to our customer autoresponder automatically.

Of course I will also post to the forum, but not everything I sent to my customers is for the public.
So the email newsletter is the primary tool for all the communication!

 

So please:

1. Stay on that email List!

2. Use an email address you actually monitor and read!
3. Whitelist my email address by adding it to your address book 
dan(ad)bot-factory.com

For support contact the helpdesk via:
support(ad)bot-factory.com

 


If you don't do it, you will definitely miss important information's and updates!!

 


Thanks in advance for your understanding and continuous support!
Dan

Link to post
Share on other sites

Hi Dan. Where do I access these videos please? Thanks James

 

Hello.

 

If you are a customer and purchased, then please contact the helpdesk and send us some details

support(ad)bot-factory.com

Your email address, paypal email and date of purchase would be really helpful to identify your purchase.

 

Dan

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

Hi dan,

 

What the best methods to clear akismet cookies?

 

Thanks

When you start a new HTTP Session with the plugin, there are no cookies. 

 

Or what do you mean exactly?

Dan

Link to post
Share on other sites

I have list to post comment with http post plugin. In the first post is not problem (comment succeed) but in the second post no comment submitted.

 

I use spin for comment, email and so on

 

i check in fidler there aksimet cookies so what the best way to clear?

 

FYI i clear cookies and so on but problem not fix

 

thanks Dan

Link to post
Share on other sites

I have list to post comment with http post plugin. In the first post is not problem (comment succeed) but in the second post no comment submitted.

 

I use spin for comment, email and so on

 

i check in fidler there aksimet cookies so what the best way to clear?

 

FYI i clear cookies and so on but problem not fix

 

thanks Dan

Hi

 

I never worked with akismet. So I can't tell you if there is something special to consider here. But if they are just regular cookies, you should be able to delete them.

 

If deleting doesn't work, you might try to do a completely new session for each post. Put the code into a define. After you post, clear the objects. 

And then start over for the next post. With a completely new login. Don't forget to behave like a human, or the site might detect you. If you post 100 posts in 5 seconds, doesn't look very natural :-)

 

Cheers

Dan

Link to post
Share on other sites

 

Additional Tutorials required?

Is there anything that is still unclear after watching all the tutorials?

 

If yes, please send me your ideas. 

dan(AD)bot-factory.com

 

Hello, Dan.

Can you add this api in video examples?

https://apiok.ru/wiki/pages/viewpage.action?pageId=42476300

Regards, Vladimir.

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