Exemple #1
0
    def __init__(self, name, desc, severity, response_ids, plugin_name):
        '''
        :param name: The vulnerability name, will be checked against the values
                     in core.data.constants.vulns.
        
        :param desc: The vulnerability description
        
        :param severity: The severity for this object
        
        :param response_ids: A list of response ids associated with this vuln
        
        :param plugin_name: The name of the plugin which identified the vuln
        '''
        Info.__init__(self, name, desc, response_ids, plugin_name)

        self.set_severity(severity)
Exemple #2
0
    def __init__(self, name, desc, severity, response_ids, plugin_name):
        '''
        :param name: The vulnerability name, will be checked against the values
                     in core.data.constants.vulns.
        
        :param desc: The vulnerability description
        
        :param severity: The severity for this object
        
        :param response_ids: A list of response ids associated with this vuln
        
        :param plugin_name: The name of the plugin which identified the vuln
        '''
        Info.__init__(self, name, desc, response_ids, plugin_name)

        self.set_severity(severity)