Verified diagnostic signature
The server returned a client, authorization, not-found, or rate-limit response.
Match output from http, understand the likely cause, then continue with sourced, read-only checks.
- Confidence
- high
- Platforms
- linux · macos · windows
- Verified
- 2026-07-24
Recognized output
Signature matched locally
HTTP/[12](?:\.\d)? 400OneLiners matches this pattern in your browser. Your pasted output is not stored or indexed.
Likely causes
What usually produces this signal
- Invalid request or URL
- Missing authorization
- Policy rejection
- Rate limiting
Safe next checks
Collect evidence before changing the system
Fetch only the HTTP response headers
curl -I <url>The output matches the expected target and exits without an error.
Trace every HTTP status and Location header in a redirect chain
curl -sS -I -L <url> | awk 'BEGIN{IGNORECASE=1} /^HTTP\// || /^location:/ {gsub("\r",""); print}'The output matches the expected target and exits without an error.