Result of a fuzz test.
| 17 | |
| 18 | @dataclass |
| 19 | class FuzzResult: |
| 20 | """Result of a fuzz test.""" |
| 21 | endpoint: str |
| 22 | method: str |
| 23 | parameter: str |
| 24 | payload: str |
| 25 | status_code: int |
| 26 | response_time: float |
| 27 | anomaly: bool = False |
| 28 | finding: Finding | None = None |
| 29 | |
| 30 | |
| 31 | class APIFuzzer: |
no outgoing calls
no test coverage detected