def __init__(self): Plugin.__init__(self) # Sets the required input for this plugin to be the output from the MXRecord-plugin. So, for this plugin # to execute at least one MX or A record must have been found. self.requiredInput = ['MXRecord'] # Set the category this test belongs to self.category = 'SMTP'
def __init__(self): Plugin.__init__(self) self.requiredInput.append("MXRecord") self.category = "SMTP"
def __init__(self): Plugin.__init__(self) self.requiredInput = ['MXRecord'] self.category = 'DNS'
def __init__(self): Plugin.__init__(self) self.requiredInput = ['MXRecord'] self.category = 'SMTP'
def __init__(self): Plugin.__init__(self) self.requiredInput = ['MXRecord', 'Connection'] self.category = "SMTP"
def __init__(self): Plugin.__init__(self) # Set the reqired input to the output from the MXRecord plugin. self.requiredInput = ['MXRecord'] # Set the category this plugin belongs to self.category = 'DNS'
def __init__(self): # Make sure base class __init__ is called to correctly setup the plugin Plugin.__init__(self) # Set category to a uid which is to be translated and then as a category on the result page in the frontend. self.category = "DNS"
def __init__(self): Plugin.__init__(self) self.category = "DNS"
def __init__(self): Plugin.__init__(self) self.requiredInput = ['StartTLS'] self.category = 'SMTP'
def __init__(self): Plugin.__init__(self) self.requiredInput.append('MXRecord') self.category = 'SMTP'