How to make a Bot??

Triplo

Newbie
Joined
Nov 27, 2014
Messages
12
Reaction score
1
Hello everyone,
I am a newbie and i wanna start trying to make money by a method i recently saw on this forum.
So i wanted to know how can i make a perfectly working,or even a close to perfect Bot which can sign up or upload videos or download them.
I wanna learn how to make them so i can proceed with the method i found.

Dont suggest to buy or google the bots,because i want to learn how to make them.

Thank You in Advance.:)
 
Well, if you plan on learning programming yourself, hope you got a few years of time to invest, I dont even know in which direction to point you in as its a very wide field..What experience do you have so far?
 
Well, if you plan on learning programming yourself, hope you got a few years of time to invest, I dont even know in which direction to point you in as its a very wide field..What experience do you have so far?

I have intermediate C++ programming skills and basic Java,programming won't be an issue,its just i don't know anything about web development,like css,php.. and all.So i also dont know where to start from,i tried Macro Softwares,the ones which record and play mouse/keyboard movements but didnt have any luck with them.
 
You need some partners in this crime.
 
Well, with Java you could use headless browsers included in libraries as HtmlUnit or Selenium, those libraries have methods to access and interact with HTML text fields, buttons, etc. You could also learn how to send GET and POST directly without the help of any library, that is the longest and hardest path, but worth it.
 
Hello everyone,
I am a newbie and i wanna start trying to make money by a method i recently saw on this forum.
So i wanted to know how can i make a perfectly working,or even a close to perfect Bot which can sign up or upload videos or download them.
I wanna learn how to make them so i can proceed with the method i found.

Dont suggest to buy or google the bots,because i want to learn how to make them.

Thank You in Advance.:)

I have intermediate C++ programming skills and basic Java,programming won't be an issue,its just i don't know anything about web development,like css,php.. and all.So i also dont know where to start from,i tried Macro Softwares,the ones which record and play mouse/keyboard movements but didnt have any luck with them.


Well if you have programming skills, you won't need us. If you don't, then learn programming. There's not much to say. A bot is a just a program that do what you want him to do. So program it the way you want it to act and it will. I'm not sure why or what you're asking for.
 
Well if you have programming skills, you won't need us. If you don't, then learn programming. There's not much to say. A bot is a just a program that do what you want him to do. So program it the way you want it to act and it will. I'm not sure why or what you're asking for.

I am asking the users,who make or made Bots,to tell me or point me in the direction from where i can get started ,i have skills ,its not like i program everyday(iam still learning.) .
 
If you don't want go with programming then this can be done by tools like zennoposter or ubot.
 
If you need to parse something (get data from pages etc) - use Apache HTTP Client + Jsoup.
HttpClient shall also help you to send any request, GET or POST or whatever. Just get some HTTP debugging tool like fiddler or even firebug, see what are the requests being sent and implement them, with the variety of libraries for Java it shouldn't be a problem. Most questions related to programming are easily found on stackoverflow, so if you have this or that problem just try and google it, chances are some one already was in the same bought.

Just start and try, at first try to develop some basic bot like WP posts extractor, just decompose it into some tasks and solve each of them... I think this is sort of basic stuff and you should know it if you ever tried to develop any software.

You should get a clue about HTTP protocol basics ofc if you haven't done so already.
 
Last edited:
If you need to parse something (get data from pages etc) - use Apache HTTP Client + Jsoup.
HttpClient shall also help you to send any request, GET or POST or whatever. Just get some HTTP debugging tool like fiddler or even firebug, see what are the requests being sent and implement them, with the variety of libraries for Java it shouldn't be a problem. Most questions related to programming are easily found on stackoverflow, so if you have this or that problem just try and google it, chances are some one already was in the same bought.

Just start and try, at first try to develop some basic bot like WP posts extractor, just decompose it into some tasks and solve each of them... I think this is sort of basic stuff and you should know it if you ever tried to develop any software.

You should get a clue about HTTP protocol basics ofc if you haven't done so already.

Thank You,that is helpful.Getting started is the hardest part.. :p
 
You should learn Regular Expressions, Xpath, CSS Selectors and use one kind of library that has a headless browser or a browser.
Then learn how to use databases and do queries.
Afterwards you will need to compile.
Does this works?
 
Assuming this is the Adult tube reuploading method its a simple scraping of results on the source tube site, extracting the .flv files or the download links (if the tube site has them), adding water-mark via FFmpeg command line and a POST request to XVideos to reupload
 
Study the website you wanna build a bot for. Their API, their limitations, their vulnerabilities...
 
You should learn Regular Expressions, Xpath, CSS Selectors and use one kind of library that has a headless browser or a browser.
Then learn how to use databases and do queries.
Afterwards you will need to compile.
Does this works?
Absolutely,thank you all others too for the responses,i had no idea ,making a bot would be this much sophisticated,i will try my best to make a simpler bot to do simple tasks then take it to the next level by studying and learning more and more.
 
If you need to parse something (get data from pages etc) - use Apache HTTP Client + Jsoup.
HttpClient shall also help you to send any request, GET or POST or whatever. Just get some HTTP debugging tool like fiddler or even firebug, see what are the requests being sent and implement them, with the variety of libraries for Java it shouldn't be a problem. Most questions related to programming are easily found on stackoverflow, so if you have this or that problem just try and google it, chances are some one already was in the same bought.

Just start and try, at first try to develop some basic bot like WP posts extractor, just decompose it into some tasks and solve each of them... I think this is sort of basic stuff and you should know it if you ever tried to develop any software.

You should get a clue about HTTP protocol basics ofc if you haven't done so already.
How do you clear cookies and cache on a bot I create?
 
How do you clear cookies and cache on a bot I create?
I am sure any HTTP client API provides means to do that.
Also you can just create a new instance of the client each time.
 
I want to make a bot that can add a item to cart on hundreds of accounts. It is a limited edition item and sells out pretty quick, a lot of demand and lots of other ‘bot-ters’ trying to get it. The website only allows 1 order per customer, so I will need proxies to change my ip. Their is one company who just makes thousands of accounts and somehow adds the item to the carts of all of the accounts. And then they resell the cart for a lot of money.

I was wondering if one of you coders, or developers, or hackers can help me create a bot similar to that one so I can add it to cart and sell the carts.

Thanks..
 
Back
Top