Ejemplo n.º 1
0
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)
Ejemplo n.º 2
0
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)
Ejemplo n.º 3
0
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)
Ejemplo n.º 4
0
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)