A signature hit for a given JA3 hash.
| 57 | |
| 58 | @dataclass |
| 59 | class JA3Match: |
| 60 | """A signature hit for a given JA3 hash.""" |
| 61 | ja3: str |
| 62 | label: str |
| 63 | confidence: str # 'high' | 'medium' | 'low' |
| 64 | source: str |
| 65 | category: str # e.g. 'malware', 'iot', 'browser', 'tool' |
| 66 | |
| 67 | |
| 68 | @dataclass |
no outgoing calls