Analyze HTTP response headers for security misconfigurations with remediation guidance.
Part of OffSecKit | Browser version | Unified CLI
pip install offseckit# Pipe headers from curl
curl -sI https://example.com | osk headers analyze
# Read from a file
osk headers analyze -f response-headers.txt
# Output as JSON for CI/CD pipelines
curl -sI https://example.com | osk headers analyze --json
# Redirect from stdin
osk headers analyze < headers.txt
# List all security headers checked
osk headers list- Unified CLI — all OffSecKit tools in one CLI
- Browser version — analyze headers in your browser
- Security Headers Guide — blog post with cheat sheet
MIT