Enriched finding from the full red-blue loop.
| 48 | @dataclass |
| 49 | class LoopFinding: |
| 50 | """Enriched finding from the full red-blue loop.""" |
| 51 | ip: str |
| 52 | port: int |
| 53 | service: str |
| 54 | version: str |
| 55 | cve_id: str |
| 56 | cvss_score: float = 0.0 |
| 57 | exploit_status: str = "NOT_CHECKED" # CONFIRMED | NOT_EXPLOITABLE | UNKNOWN | BLOCKED |
| 58 | attack_tags: list[dict] = field(default_factory=list) |
| 59 | already_exploited: bool = False # Threat hunt result |
| 60 | hunt_evidence: list[str] = field(default_factory=list) |
| 61 | remediation: RemediationScript | None = None |
| 62 | harden_result: HardenResult | None = None |
| 63 | verified_closed: bool = False |
| 64 | |
| 65 | |
| 66 | @dataclass |
| 67 | class LoopReport: |