What our audit analyzes

Web Security & SEO

HTTPS is a Google ranking factor. Discover how to secure your site and protect your visitors with web security best practices.

Why does security impact your SEO?

Since 2014, Google uses HTTPS as a ranking signal. An unsecured site (HTTP) is penalized in search results and displayed with a "Not Secure" warning in Chrome, which drives visitors away.

Beyond HTTPS, security headers protect your site against attacks (XSS, clickjacking, injection) and strengthen the trust of users and search engines.

HTTPS & SSL Certificate

SSL/TLS Certificate

The SSL certificate encrypts communications between the user's browser and your server. It activates the HTTPS protocol and displays the padlock in the address bar.

https://www.your-site.com

Secure connection - Valid certificate

Certificate types:

  • DV Domain Validation - Basic, verifies domain
  • OV Organization Validation - Verifies organization
  • EV Extended Validation - Thorough verification

Essential Security Headers

HSTS

HTTP Strict Transport Security (HSTS)

HSTS forces the browser to always use HTTPS for your domain, preventing man-in-the-middle attacks and HTTP to HTTPS redirects.

Recommended configuration:

Strict-Transport-Security: max-age=31536000; includeSubDomains; preload
  • max-age: cache duration (1 year recommended)
  • includeSubDomains: applies to all subdomains
  • preload: eligible for HSTS preload list
CSP

Content Security Policy (CSP)

CSP controls which resources can be loaded on your page. It's the most effective protection against XSS attacks (Cross-Site Scripting).

Basic example:

Content-Security-Policy: default-src 'self'; script-src 'self' 'unsafe-inline'

What CSP controls:

  • • JavaScript script sources
  • • CSS style sources
  • • Image and media sources
  • • Font sources
  • • Authorized AJAX connections

X-Frame-Options

Prevents your site from being embedded in an iframe on another domain, protecting against clickjacking attacks.

Recommended configuration:

X-Frame-Options: SAMEORIGIN

Available options:

  • DENY - No iframe allowed
  • SAMEORIGIN - Only from same domain
  • ALLOW-FROM uri - From a specific URL

Other important security headers

X-Content-Type-Options

X-Content-Type-Options: nosniff

Prevents the browser from guessing MIME type

X-XSS-Protection

X-XSS-Protection: 1; mode=block

Activates browser XSS filter

Referrer-Policy

Referrer-Policy: strict-origin-when-cross-origin

Controls referrer information sent

Permissions-Policy

Permissions-Policy: geolocation=(), microphone=()

Controls access to browser APIs

What our audit checks

Our tool automatically analyzes your site's security and gives you a detailed score with recommendations to improve your protection.

Valid SSL/HTTPS certificate
HSTS header configured
Content Security Policy
X-Frame-Options
X-Content-Type-Options
HTTP to HTTPS redirect
Analyze my site's security