A single security finding or piece of intelligence.
| 47 | |
| 48 | |
| 49 | class Finding(BaseModel): |
| 50 | """A single security finding or piece of intelligence.""" |
| 51 | |
| 52 | title: str |
| 53 | description: str |
| 54 | severity: Severity = Severity.INFO |
| 55 | source: str = Field(..., description="Module/tool that produced this finding") |
| 56 | data: dict[str, Any] = Field(default_factory=dict) |
| 57 | timestamp: datetime = Field(default_factory=lambda: datetime.now(timezone.utc)) |
| 58 | references: list[str] = Field(default_factory=list) |
| 59 | |
| 60 | |
| 61 | class ScanResult(BaseModel): |
no outgoing calls