Пример #1
0
    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'
Пример #2
0
	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'
Пример #3
0
 def __init__(self):
     Plugin.__init__(self)
     self.requiredInput.append("MXRecord")
     self.category = "SMTP"
Пример #4
0
	def __init__(self):
		Plugin.__init__(self)
		self.requiredInput = ['MXRecord']
		self.category = 'DNS'
Пример #5
0
	def __init__(self):
		Plugin.__init__(self)

		self.requiredInput = ['MXRecord']
		self.category = 'SMTP'
Пример #6
0
	def __init__(self):
		Plugin.__init__(self)
		self.requiredInput = ['MXRecord', 'Connection']
		self.category = "SMTP"
Пример #7
0
	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'
Пример #8
0
	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"
Пример #9
0
	def __init__(self):
		Plugin.__init__(self)
		self.category = "DNS"
Пример #10
0
	def __init__(self):
		Plugin.__init__(self)
		self.requiredInput = ['StartTLS']
		self.category = 'SMTP'
Пример #11
0
 def __init__(self):
     Plugin.__init__(self)
     self.requiredInput = ['MXRecord', 'Connection']
     self.category = "SMTP"
Пример #12
0
    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"
Пример #13
0
	def __init__(self):
		Plugin.__init__(self)
		self.requiredInput.append('MXRecord')
		self.category = 'SMTP'
Пример #14
0
 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'
Пример #15
0
 def __init__(self):
     Plugin.__init__(self)
     self.requiredInput = ['StartTLS']
     self.category = 'SMTP'
Пример #16
0
 def __init__(self):
     Plugin.__init__(self)
     self.category = "DNS"