Enriched vulnerability or credential finding with threat intelligence
| 68 | |
| 69 | @dataclass |
| 70 | class EnrichedFinding: |
| 71 | """Enriched vulnerability or credential finding with threat intelligence""" |
| 72 | original_finding: Dict[str, Any] |
| 73 | threat_contexts: List[ThreatContext] |
| 74 | dynamic_risk_score: float |
| 75 | attribution: Optional[ThreatAttribution] |
| 76 | active_campaigns: List[str] |
| 77 | exploitation_prediction: Dict[str, Any] |
| 78 | recommended_actions: List[str] |
| 79 | executive_summary: str |
| 80 | |
| 81 | |
| 82 | class ThreatIntelligenceFusion: |
no outgoing calls
no test coverage detected