Skip to content
Snippets Groups Projects
description_provider.py 308 B
Newer Older
  • Learn to ignore specific revisions
  • __all__ = ['VulnDescriptionProvider']
    
    
    
    class VulnDescriptionProvider(metaclass=abc.ABCMeta):
        """
        Provides extended vulnerability description by vulnerablity identifier and type
        """
        @abc.abstractmethod
        def get_description(self, vuln: str, vuln_type: str) -> str:
            pass