Which programming languages are best for web automation?

Pretty much any of the .NET languages. I think there's an e-book in the downloads section on creating your own bots with C# (say C Sharp).
 
Does anyone know what the best forum(s) would be about creating bots, I realize this probably isn't the absolute best place to learn about bots since not everyone here is focused on programming... I've been searching on google for things related but am having trouble finding any decent resources
 
PHP + cURL is not bad at all, but you might want to check out the Zend Framework library, it has a Zend_Http_Client which I find much easier to use than cURL, not to mention it's nicer to the eye.

Outside PHP (which is deadly slow for anything but web applications), you have the Python + urllib2 + poster.

Also, for the HTML parsing required on many bots, I would recommend you use XPath as much as you can, and keep regex to a minimum.
 
Does anyone know what the best forum(s) would be about creating bots, I realize this probably isn't the absolute best place to learn about bots since not everyone here is focused on programming... I've been searching on google for things related but am having trouble finding any decent resources

trueblackhat.com <--create your own bots
 
Hey ho all, just my two cents.

For anyone STARTING out in programming, start with C#

Its a steeper learning curve BUT its like learning java, which in turn is like learning the piano. Once you got C#/Java, the other languages / instruments are easy.

I agree with others who have said that PHP + cURL is a deadly combination.

Your right it is deadly, especially EXEC and, socket operations etc.

BUT I like my .Net Asynchronous Socket Operations, HttpRequestHeader enums, Hashtables, IPEndPoints, DNS.BeginResolve, JavaScriptSerializer etc etc :)

Remember - we are ALL botting to get advantage over the BIG G - Mr Gates is too!!
 
LAMP = Linux, Apache, Mysql, PHP is the only way to go if you want something cheap & stable.
 
Only PHP my friend. Best with cUrl. I used Perl before but PHP is more suitable for me. I have all my automation software on server side. This+ cron is a fuc_n weapon :)
 
I don't want to read the whole post BUT I MADE A BOT IN THE FIRST DAY OF LEARNING VISUAL BASIC , ITS A BOT THAT CAN POST TO 5 POPULAR SITES !
:D
 
I was able to automate opening a web browser, and send keystokes, and mouse clicks in Visual Basic
 
F# rocks here. F# is the king. F# is God for pattern matching. :D

>> My 2 years experience with F#
 
PHP
I have developed several projects for clients and my own automation bots with php +curl.
Php is easy language to understand, and honestly if you wants to come in programming start with php, it is powerful and stable, on other hand i am also in process to learn Csharp, as it use less code to write other then C or C++.
 
Php.. the best one when combines with curl. I have never tried C, C++ so i dont know about them..
 
Back
Top