def email_active(message, *args): """ Responds to direct messages with a email reputation report. The active version of this bot is meant to be a query service. """ plugin_manager.evaluate('email', message)
def md5_active(message, *args): """ Actively respond to direct messages with malware reports. The active version of this bot is meant to be more of a query service. """ plugin_manager.evaluate('md5', message)
def email_passive(message, *args): """ Monitor channels and report email reputations above a certain threshold. This version of the bot is meant to be a monitoring service. """ plugin_manager.evaluate('email', message, False)
def md5_passive(message, *args): """ Passively monitor channels and report malware when found. The passive version of this bot is meant to be a monitoring service. """ plugin_manager.evaluate('md5', message, False)