VOOZH about

URL: https://apify.com/andok/security-headers-analyzer

โ‡ฑ HTTP Security Headers Analyzer ยท Apify


Pricing

$1.00 / 1,000 url scans

Go to Apify Store

HTTP Security Headers Analyzer

Audit HTTP response headers (CSP, HSTS, X-Frame-Options) to verify web application security and compliance standards.

Pricing

$1.00 / 1,000 url scans

Rating

0.0

(0)

Developer

๐Ÿ‘ Andok

Andok

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

3 months ago

Last modified

Share

Security Headers Analyzer

Audit HTTP security headers against OWASP best practices across hundreds of URLs in a single run. Missing headers like HSTS, CSP, and X-Frame-Options are the most common findings in penetration tests โ€” yet most teams only discover them after an incident. Scan your entire domain inventory in minutes with automatic grading from A to F.

Features

  • OWASP header checks โ€” validates HSTS, CSP, X-Frame-Options, X-Content-Type-Options, Referrer-Policy, Permissions-Policy, COOP, CORP, and COEP
  • Automatic grading โ€” assigns a score (0-100) and letter grade (A-F) based on header coverage and configuration quality
  • Actionable warnings โ€” flags weak configurations like unsafe-inline in CSP or missing max-age in HSTS
  • Bulk processing โ€” scan hundreds of URLs concurrently in a single run
  • Redirect-aware โ€” optionally follows redirects and reports the full redirect chain
  • Flexible HTTP method โ€” use HEAD for speed or GET for servers that block HEAD requests

Input

FieldTypeRequiredDefaultDescription
urlsarrayNo["https://google.com"]List of URLs to analyze for security headers
urlstringNoโ€”Single URL to analyze (use urls for bulk scanning)
methodstringNoHEADHTTP method to use. HEAD is faster; switch to GET if a server blocks HEAD requests
followRedirectsbooleanNotrueWhether to follow HTTP redirects before analyzing headers
maxRedirectsintegerNo5Maximum number of redirects to follow per URL (0-20)
timeoutSecondsintegerNo15Request timeout per URL in seconds (1-120)
concurrencyintegerNo5Number of URLs to process in parallel (1-25)

Input Example

{
"urls":[
"https://google.com",
"https://github.com",
"https://example.com"
],
"method":"HEAD",
"followRedirects":true,
"concurrency":10
}

Output

Each URL produces one dataset record containing the security grade, score, list of missing and misconfigured headers, and all response headers for reference.

Key output fields:

  • inputUrl (string) โ€” the URL as submitted
  • finalUrl (string) โ€” the URL after redirects (if followed)
  • status (number) โ€” HTTP status code
  • grade (string) โ€” letter grade from A (excellent) to F (critical gaps)
  • score (number) โ€” numeric score from 0 to 100
  • missing (array) โ€” list of required headers that are absent
  • warnings (array) โ€” list of configuration issues found
  • headers (object) โ€” all response headers (lower-cased keys)
  • redirects (array) โ€” redirect chain traversed
  • checkedAt (string) โ€” ISO 8601 timestamp

Output Example

{
"inputUrl":"https://github.com",
"finalUrl":"https://github.com/",
"status":200,
"grade":"B",
"score":80,
"missing":[
"Referrer-Policy"
],
"warnings":[
"Missing Permissions-Policy.",
"Missing Cross-Origin-Opener-Policy (COOP).",
"Missing Cross-Origin-Resource-Policy (CORP).",
"Missing Cross-Origin-Embedder-Policy (COEP)."
],
"headers":{
"strict-transport-security":"max-age=31536000; includeSubdomains; preload",
"content-security-policy":"default-src 'none'; base-uri 'self'; ...",
"x-frame-options":"deny",
"x-content-type-options":"nosniff"
},
"redirects":["https://github.com/"],
"checkedAt":"2026-03-09T12:00:00.000Z"
}

Pricing

EventCost
URL Scan$0.001

Pay only for URLs successfully scanned. Respects your per-run spending limit.

Use Cases

  • Penetration test prep โ€” pre-scan client domains to identify missing security headers before a full engagement
  • Compliance audits โ€” verify OWASP header requirements across all production endpoints for SOC 2 or ISO 27001
  • DevOps CI/CD checks โ€” schedule regular scans to catch header regressions after deployments
  • Agency security reports โ€” generate client-ready security grades for website portfolios
  • M&A due diligence โ€” quickly assess the security posture of acquisition targets

Related Actors

ActorWhat it adds
SSL Cipher CheckerAudit TLS cipher suites and protocol versions alongside header analysis
SSL Certificate MonitorMonitor certificate expiry dates to complement header-level security checks
Tech Stack AnalyzerIdentify the CMS, frameworks, and CDNs behind each scanned URL

You might also like

Security Headers Checker

pillowy_travel/security-headers-checker

Analyze HTTP security headers of websites and generate a security score. Detect missing headers like CSP, HSTS, X-Frame-Options, and more. Perfect for web security audits, vulnerability checks, learning, and automated monitoring.

๐Ÿ›ก๏ธ Security Headers Checker

taroyamada/security-headers-checker

Audit HTTP security headers in bulk across hundreds of websites. Extract OWASP compliance grades and detect missing HSTS or CSP directives instantly.

Security Headers Checker โ€” OWASP Audit & Grading

accurate_pouch/security-headers

Audit 12 HTTP security headers (HSTS, CSP, X-Frame-Options, Referrer-Policy, Permissions-Policy, COOP, CORP, COEP). A-F grading, actionable recommendations. 5 URLs free.

๐Ÿ‘ User avatar

Manchitt Sanan

2

Http Header Inspector

zerobreak/http-header-inspector

HTTP header inspector that pulls response headers from any URL, scores them for security gaps, and flags missing CSP, HSTS, and X-Frame-Options, so teams can audit caching, redirects, and server config without running curl.

HTTP Probe -- TLS, Security Headers, Redirects

jungle_synthesizer/ssl-security-headers-checker

Bulk site-health probe: TLS certificate, security-header grading (CSP, HSTS, X-Frame-Options, Permissions-Policy + 5 others, A/B/C/D/F grade), redirect chain, TTFB, HTTP/2 + HTTP/3, IPv6 reachability. Built for devops, security, and CI pipelines.

๐Ÿ‘ User avatar

BowTiedRaccoon

2

Website Security & Vulnerability Audit

smart-digital/website-security-vulnerability-audit

Automated security and vulnerability audit for websites. Detects WordPress plugin vulnerabilities, checks for updates, analyzes SSL/TLS, security headers, and CMS security

My Smart Digital

34

5.0

Related articles

How to send HTTP headers with cURL
Read more
HTTP headers with Axios: a comprehensive guide
Read more