Creating BOTS
hi friends,
recently I came o know about internet bots.Can someone help me in creating a simple web BOT for tasks like automatically signing in into my gmail account,sending a particular email to all my frnds,then in orkut checking for any visitors and giving the list to me in a text file.
Language I prefer is c or c++.
THANKS IN ADVANCE
with regards
alvalany
Junior Poster in Training
61 posts since Jul 2009
Reputation Points: 8
Solved Threads: 2
uhhhh.... Do you even know C++? No one can help you if you don't even know the basics.
MosaicFuneral
Posting Virtuoso
1,691 posts since Nov 2008
Reputation Points: 888
Solved Threads: 116
You're better off just doing these things manually, trust me. It's 100x more work to make this bot than it is to just do it yourself.
William Hemsworth
Posting Virtuoso
1,591 posts since Mar 2008
Reputation Points: 1,429
Solved Threads: 129
firstPerson
Senior Poster
3,923 posts since Dec 2008
Reputation Points: 841
Solved Threads: 608
uhhhh.... Do you even know C++? No one can help you if you don't even know the basics.
yeah.. I am pretty good in c and C++. Will it be enough? HEard the all process is much easier using visual c.
alvalany
Junior Poster in Training
61 posts since Jul 2009
Reputation Points: 8
Solved Threads: 2
You're better off just doing these things manually, trust me. It's 100x more work to make this bot than it is to just do it yourself.
Actually i dont think it wont me practical in my case as numerous tasks has to be done.Can atleast suggest how to do this stuff in c or c++
alvalany
Junior Poster in Training
61 posts since Jul 2009
Reputation Points: 8
Solved Threads: 2
>>for tasks like automatically signing in into my gmail account,sending a particular email to all my frnds,
Well,You could basically use an Email client to sign into gmail check for new mails and then sending an email to all of your friends. Why do you need to re-invent the wheel for such a task?
>>then in orkut checking for any visitors and giving the list to me in a text file
Well when this comes into the picture, it takes a little finace to do it.
The first thing your c++ program must do is to learn on how to open a webpage with C++. This might take a while understanding, but a google search always helps :)
You will also find many threads on this forum for opening a particular webpage.
The second thing you should do is to view the source of your orkut home page and understand where exactly your visitor links are displayed in the source. After that its prettymuch PARSING through the code.
Though this might sound pretty simple, it actually is not so easy as the home page requires you to fill in a user id and password. So i guess that You should concentrate to get more knowledge about both HTML & C++ (OPENING WEB PAGES ) and the basic methodology of ISTREAMS,STRINGSTREAMS,File-Streams and PARSING.
Note: Though this might give you a brief explanation its just a prototype which gives you a basic idea and not the exact requirements. Projects like these might take months for a novice programmer itself.
Sky Diploma
Practically a Posting Shark
865 posts since Mar 2008
Reputation Points: 673
Solved Threads: 131
Seems to me like a case of not using the right tools for the job.
Doing this as a browser plugin would be a snap (by comparison).
Starting where you are, you're basically saying "I need to use gmail to send an email - I know, first thing I'll do is write a really crappy web browser to fetch web pages and do a half-assed job of parsing the HTML and running the embedded scripts".
Salem
Posting Sage
11,531 posts since Dec 2005
Reputation Points: 5,862
Solved Threads: 953