bot

Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl?

Is there an equivalent to Java's Robot class (java.awt.Robot) for Perl? ...

Is there a good open source search engine including indexing bot which can be used to make up special catalogue by feeding the bot with certain properties?

Hello, Our application (C#/.NET) needs a lot of queries to search. Google's 50,000 policy per day is not enough. We need something that would crawl Internet websites by specific rules we set (for ex. country domains) and gather URLs, Texts, keywords, name of websites and create our own internal catalogue so we wouldn't be limited to any...

What $_POST[] do i need to post to a forum?

Hi! I am admin on a forum. Earlier we had phpbb 2.0 and i made a bot that could write to the forum. Now, we have upgraded the forum to phpbb 3.0, but i can't get my bot to write to the forum anymore. I have looked for a solution, but now i am out of ideas. So it would have been great if anyone have a suggestion. i have btw used CURL a...

developing a bot to use as gtalk contact with java

I want to develop a bot who can chat from gtalk and I have some experience with java. I don't want to use the bot for IA purpose. I want to use the bot to emulate a console like xterm. Edit: Ok: the question is "Any leads on how to develop it?" thanks for the awnsers. ...

Creating an IM bot

I am trying to create an IM bot and I haven't been able to find the necessary resources. UPDATE There was an issue with Imified making gtalk bots not appear online (and not responding), it works now so I'm closing this. This tutorial does work. Original question not deleted for reference purposes First, I did find a great tutori...

sending messages to a flash game with C# / autoit

I'm making a bot for a flash game and I've figured out how to import all the autoit functions into my C# code. string title = "Minesweeper"; string full = auto.WinGetTitle(title,""); string handle = auto.WinGetHandle(full, ""); if (auto.WinExists(full, "") == 1) textBox1.Text = "window exists"...

AS3 anti bot form script?

I wrote a AS3 script, basically the script just a form that allow user to enter their email address. After launch the site for couple of months, I found I receive a lots of BOT spammers. I know, 1 way of prevent BOT is using recaptcha thing, beside recaptcha, is there any way to prevent bot to submit my AS3 form?? ...

In PHP, approaches to reduce bots submit form and invalid email accounts?

I know its kinda common question, but I cant find a best answer (for now)... What are the best approaches to reduce bots submit form and invalid email accounts in php and html? Bots - capthca? hidden css? what else? Invalid Email - This is truely insane job. How can I detect if the user type: [email protected], then i said the email is ...

Writing a non-GUI bot using Mozilla Framework

Hi, I'm looking for a way to write a non-GUI bot using Mozilla Framework. The bot should be able to work like normal browser (automatically download relevant JS files, make XMLHTTPRequests, run JS operations, modify DOM), except no GUI will be needed. I wonder if it is possbile to build XULRunner without X, GTK/KDE (without any GUI dep...

IRC Python Bot: Best Way

I want to build a bot that basically does the following: Listens to the room and interacts with users and encourages them to PM the bot. Once a user has PMed the bot engage with the client using various AI techniques. Should I just use the IRC library or Sockets in python or do I need more of a bot framework. What would you do? Th...

How would I go about writing a simple PHP bot?

How would I go about writing a simple PHP bot that could login in and recieve all the cookies sent by the server? ... and then send them back when required? Any suggestions would be appreciated. ...

PHP Chat Bot: Google Talk

Hi, I was wondering how to create a chat bot for Google Talk via special client. I know it uses XMPP to send messages, but I do not know how to use this at all. It is my understanding that I should be able to make a bot which chats for me when I am away if I were to create my own client page, which would parse the chats with my data. W...

Plugins / modules for my C# program

i am making a IRC bot in C#, and i would like to have the feature to load plugins... for example: there would be a text file with some code in it, and then the program would import the contents of that text file AS CODE... into a function... how is this possible? ...

xmpp with python: xmpp.protocol.InvalidFrom: (u'invalid-from', '')

cl = xmpp.Client('myserver.com') if not cl.connect(server=('mysefver.com',5223)): raise IOError('cannot connect to server') cl.RegisterHandler('message',messageHandler) cl.auth('[email protected]', 'mypassword', 'statusbot') cl.sendInitPresence() msgtext = formatToDo(cal, 'text') message = xmpp.Message('anothe...

Pymsn/Papyon contact memberships

Dear Stackoverflow, I'm having the following problem: I'm programming a bot for MSN Messenger in python with the pymsn/papyon library. I have everything running, except that I don't know how to accept new contacts already pending or new requests. Sadly the documentation of the library is very bad. I've achieved to retrieve all pending c...

[C#] How to make a web bot? (or something)

I need to register to a site programmatically. I did it with VB6 (using the IE Web Browser component), but I don't know how to edit textboxes on a website using WebBrowser. I don't need to do it with Webbrowser, it's just that I know it can be done with it. I just need to insert a username, a password etc. using my program. Thanks ...

Where do I start with a web bot?

I simply want to create an automatic script that can run (preferably) on a web-server, and simply 'clicks' on an object of a web page. I am new to Python or whatever language this would be used for so I thought I would go here to ask where to start! This may seem like I want the script to scam advertisements or do something illegal, but ...

C# irc bot connection class

alright, so im making an irc bot, and im wondering a few ways that i could create a connection class, so that i can connect to multiple networks, i have it connecting to one server, i just dont know how to make that into a way to connect to more than one. basically my question is: how can i take the current bot i wrote, rewrite it, with...

How can a while() loop not stall when using fsockopen() and fgets() in PHP?

This is the basic connection code for a small PHP IRC bot. The problem is that it seems that the while() loop does not progress beyond fgets() until it receives data from the IRC server. I want the while() loop to iterate regardless if the IRC server has not yet sent data. Is this possible? $socket = fsockopen($config['irc_server'], $co...

Retrieving HTML pages from a 3rd party log in website with ASP.NET

Our Situation: Our team needs to retrieve log information from a 3rd party website (Specifically, this log information is call logs -- our client rents an 866 number. When calls come in, they assist people and need to make notes accordingly in our application that will correspond with the current call). Our client has a web account with ...