Spaces:
Running
Running
File size: 1,870 Bytes
d523c31 3b232e3 d523c31 3b232e3 d523c31 3b232e3 d523c31 3b232e3 d523c31 3b232e3 d523c31 3b232e3 d523c31 3b232e3 d523c31 3b232e3 d523c31 3b232e3 d523c31 3b232e3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
"""
Component data classes used in AVID report and vulnerability datamodels.
"""
from typing import Dict, List, Optional
from pydantic import BaseModel
from .enums import *
class LangValue(BaseModel):
"""Generic class to store a string with its language specified."""
lang: str
value: str
class Artifact(BaseModel):
"""Type and name of an affected artifact."""
type: ArtifactTypeEnum
name: str
class Detection(BaseModel):
"""Method to detect a specific issue."""
type: MethodEnum
name: str
class Affects(BaseModel):
"""Information on Artifact(s) affected by this report."""
developer: List[str]
deployer: List[str]
artifacts: List[Artifact]
class Problemtype(BaseModel):
"""Description of the problem a report/vuln is concerned with."""
classof: ClassEnum
type: Optional[TypeEnum]
description: LangValue
class Metric(BaseModel):
"""Quantification of the issue in a specific report."""
name: str
detection_method: Detection
results: Dict
class Reference(BaseModel):
"""Details for a reference of a report/vulnerability."""
type: Optional[str]
label: str
url: str # AnyUrl is a better fit, but keeping this because submissions are not standard yet
class Config: # type is excluded if None
fields = {'type': {'exclude': True}}
class AvidTaxonomy(BaseModel):
"""AVID taxonomy mappings of a report/vulnerability."""
vuln_id: Optional[str]
risk_domain: List[str]
sep_view: List[SepEnum]
lifecycle_view: List[LifecycleEnum]
taxonomy_version: str
class Config: # vuln_id is excluded if None
fields = {'vuln_id': {'exclude': True}}
class Impact(BaseModel):
"""Impact information of a report/vulnerability, e.g. different taxonomy mappings, harm and severity scores."""
avid: AvidTaxonomy |