automationbotsinstant-messagingaolaim

How do "professional" IM bots avoid being kicked off line or locked out?


I'm looking to develop a scalable IM bot (aka Automated Service Agent). It's been done before and I'm wondering what methods are used to maintain reliability. I see two immediate problems with scaling:

1) On AIM, you can be kicked off if too many users warn you. My bot does not spam or do anything malicious but the vulnerability is still there.

2) If there are network problems, and the bot signs on/off too many times in a row, AOL will lock it out for an unknown period of time.


Solution

  • Here are some preventative measures for detection:

    1. A bot can use several user accounts, so that its activity is less likely to be detected.

    2. A bot can use proxy servers to hide detection even further by obscuring its real IP address.

    3. A bot can be programmed with the network's rules in mind, and is simply prevented from breaking those rules in its logic.

    Also, in response to your first problem, fewer people than you might expect will actually report a problem.

    Additionally, and this is purely speculative, depending on the network's rules, it could be possible to simulate enough legitimate activity between two or more bots (and several user accounts), so as to offset the actual reports that are made.

    In response to problem number two, with multiple accounts, the bot will just move to the next account when a failure occurs.