Open
Description
--offline
disables all possible online operations, including routine TUF trust root updates. This is desirable for offline environments where trust is pre-established or established asynchronously, but can result in users having very stale trust roots without realizing it (meaning they may be missing revocations or important rotations that allow them to verify new signatures):
Fixing this has two parts:
- Determine an "acceptable" oldness policy. Considering trust roots "stale" after 24h might be reasonable, but might also be too noisy for some offline users.
- Emit a warning when performing
sigstore verify
commands in--offline
mode with a trust root that's older than the window chosen in (1).
From (2), there's maybe a (3): pick a "red line" after which the warning becomes a hard error, forcing the user to update. Maybe 24h for a warning and 1 week for the red line, although again this could use user/integrator feedback.
CCing @mgorny @sethmlarson for thoughts!
Activity