Skip to content

Finding

sereto.models.finding

Finding

Bases: SeretoBaseModel

Source code in sereto/models/finding.py
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
class Finding(SeretoBaseModel):
    name: str
    path_name: TypePathName
    risks: dict[ReportVersion, Risk]
    vars: dict[str, Any] = {}
    format: FileFormat = FileFormat.md
    path: Path | None = Field(exclude=True, default=None)

    @field_validator("risks", mode="before")
    @classmethod
    def convert_risk_type(cls, v: dict[Any, Any]) -> dict[Any, Risk]:
        for key, value in v.items():
            match value:
                case Risk():
                    continue
                case str():
                    v[key] = Risk(value)
                case _:
                    raise ValueError("unsupported type for Risk")
        return v

    def present_in_versions(self) -> list[ReportVersion]:
        """Get list of all report versions in which this finding is present."""
        return [k for k in self.risks]

    def template_path(self, templates_path: Path, category: str) -> Path:
        return templates_path / "categories" / category / f"{self.path_name}.{self.format.value}.j2"

    def metadata(self, templates_path: Path, category: str) -> TemplateMetadata | None:
        template = self.template_path(templates_path=templates_path, category=category)
        if not template.is_file():
            Console().log(f"finding template not found at '{template}'")
            return None

        metadata, _ = frontmatter.parse(template.read_text())
        try:
            return TemplateMetadata.model_validate(metadata)
        except ValidationError as ex:
            raise SeretoValueError(f"invalid template metadata in '{template}'") from ex

    def assert_required_vars(self, templates_path: Path, category: str) -> None:
        if (metadata := self.metadata(templates_path=templates_path, category=category)) is None:
            Console().log(f"no metadata for finding {self.path_name!r}")
            return

        for var in metadata.variables:
            if var.required and var.name not in self.vars:
                raise SeretoValueError(f"required variable {var.name!r} not set for finding {self.path_name!r}")

present_in_versions()

Get list of all report versions in which this finding is present.

Source code in sereto/models/finding.py
107
108
109
def present_in_versions(self) -> list[ReportVersion]:
    """Get list of all report versions in which this finding is present."""
    return [k for k in self.risks]

FindingGroup

Bases: SeretoBaseModel

Source code in sereto/models/finding.py
136
137
138
139
140
141
142
143
144
145
146
147
148
149
class FindingGroup(SeretoBaseModel):
    name: str
    risks: dict[ReportVersion, Risk]
    findings: list[Finding]

    @property
    def uname(self) -> str:
        """Unique name for the finding group instance.

        Returns:
            The unique name of the finding group.
        """
        name = "".join([x.lower() for x in unidecode(self.name) if x.isalnum()])
        return f"finding_{name}"

uname: str property

Unique name for the finding group instance.

Returns:

Type Description
str

The unique name of the finding group.

FindingsConfig

Bases: SeretoBaseModel

Source code in sereto/models/finding.py
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
class FindingsConfig(SeretoBaseModel):
    report_include: list[ReportIncludeGroup]
    findings: list[Finding]

    @model_validator(mode="after")
    def default_risks(self) -> "FindingsConfig":
        for finding_group in self.finding_groups:
            all_versions = set([r for f in finding_group.findings for r in f.risks])
            for version in all_versions:
                if version not in finding_group.risks:
                    version_risks = [r for f in finding_group.findings for v, r in f.risks.items() if v == version]
                    finding_group.risks[version] = max(version_risks, key=lambda r: r.to_int())
        return self

    @model_validator(mode="after")
    def validate_findings_config(self) -> "FindingsConfig":
        all_path_names = [f.path_name for f in self.findings]
        all_included_findings = [f for ri in self.report_include for f in ri.findings]

        # path_name is unique
        if len(all_path_names) != len(set(all_path_names)):
            raise ValueError('"path_name" must be unique')

        # each finding should be included only once (or not at all)
        if len(all_included_findings) != len(set(all_included_findings)):
            raise ValueError("each finding must be included at most once")

        for included_group in self.report_include:
            # at least one finding in each finding group
            if len(included_group.findings) == 0:
                raise ValueError(f'no findings configured for finding group "{included_group.name}"')

            # all references to findings can be resolved
            for finding_ref in included_group.findings:
                if finding_ref not in all_path_names:
                    raise ValueError(
                        f'finding "{finding_ref}" included in "{included_group.name}" is not present in'
                        "the findings section"
                    )
        return self

    @classmethod
    def from_yaml_file(cls, filepath: Path) -> "FindingsConfig":
        try:
            return cls.model_validate(YAML.load(filepath))
        except FileNotFoundError:
            raise SeretoPathError(f'file not found at "{filepath}"') from None
        except PermissionError:
            raise SeretoPathError(f'permission denied for "{filepath}"') from None
        except ValueError as e:
            raise SeretoValueError("invalid findings.yaml") from e

    def included_findings(self) -> Iterator[Finding]:
        """Generator of individual findings included in the report."""
        for ri in self.report_include:
            for finding_path in ri.findings:
                yield [f for f in self.findings if f.path_name == finding_path][0]

    def get_finding(self, path_name: str) -> Finding:
        """Retrieve specific Finding instance by its 'path_name' attribute."""
        matches = [f for f in self.findings if f.path_name == path_name]
        match len(matches):
            case 0:
                raise SeretoValueError(f"finding with name {path_name!r} does not exist")
            case 1:
                return matches[0]
            case _:
                raise SeretoRuntimeError(
                    "improper validation, multiple findings with the same name should not be possible"
                )

    @cached_property
    def finding_groups(self) -> list[FindingGroup]:
        """Generator of included finding groups."""
        return [
            FindingGroup(
                name=group.name,
                risks=group.risks,
                findings=[self.get_finding(f_name) for f_name in group.findings],
            )
            for group in self.report_include
        ]

finding_groups: list[FindingGroup] cached property

Generator of included finding groups.

get_finding(path_name)

Retrieve specific Finding instance by its 'path_name' attribute.

Source code in sereto/models/finding.py
210
211
212
213
214
215
216
217
218
219
220
221
def get_finding(self, path_name: str) -> Finding:
    """Retrieve specific Finding instance by its 'path_name' attribute."""
    matches = [f for f in self.findings if f.path_name == path_name]
    match len(matches):
        case 0:
            raise SeretoValueError(f"finding with name {path_name!r} does not exist")
        case 1:
            return matches[0]
        case _:
            raise SeretoRuntimeError(
                "improper validation, multiple findings with the same name should not be possible"
            )

included_findings()

Generator of individual findings included in the report.

Source code in sereto/models/finding.py
204
205
206
207
208
def included_findings(self) -> Iterator[Finding]:
    """Generator of individual findings included in the report."""
    for ri in self.report_include:
        for finding_path in ri.findings:
            yield [f for f in self.findings if f.path_name == finding_path][0]