(target: str)
| 548 | "status": entry.get("status", 0), |
| 549 | "length": entry.get("length", 0), |
| 550 | "words": entry.get("words", 0), |
| 551 | "content_type": entry.get("content-type", ""), |
| 552 | }) |
| 553 | except json.JSONDecodeError as exc: |
| 554 | result.status = "error" |
| 555 | result.error_message = f"ffuf JSON parse failed: {exc}" |
| 556 | result.duration_seconds = time.monotonic() - started |
| 557 | return result |
no outgoing calls