You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
name: "Headers: ARC-Seal validation failure after initial success"
description: "Detects messages with ARC-Seal headers showing an initial validation success (cv=none) followed by a validation failure (cv=fail), indicating potential authentication bypass or message tampering."
type: "rule"
severity: "medium"
source: |
type.inbound
and any(headers.hops,
any(filter(.fields, .name == "ARC-Seal" and .value != ""),
strings.starts_with(.value, "i=1")
and strings.contains(.value, "cv=none;")
)
)
and any(headers.hops,
any(filter(.fields, .name == "ARC-Seal" and .value != ""),