Sourcemap Explorer
Stack · CDN

Cloudflare

Cloudflare is a web-infrastructure and website-security company, providing content-delivery-network services, DDoS mitigation, Internet security, and distributed domain-name-server services.

CDN

About

Cloudflare is a web-infrastructure and website-security company, providing content-delivery-network services, DDoS mitigation, Internet security, and distributed domain-name-server services.

Categories: CDN

Quick facts

CategoriesCDN

Detection methodology for CDN

CDN detection runs against response headers (`cf-ray` for Cloudflare, `x-amz-cf-id` for CloudFront, `x-served-by` for Fastly, `x-cache` for Akamai) and asset hostnames in the page's resource tree. The same site can sit behind multiple CDNs (an edge cache in front of an origin CDN); we surface each one separately so the layered architecture is visible.

How we detect Cloudflare

Each signal alone is rarely conclusive — Sourcemap Explorer cross-references all of them and weights by confidence. You can reproduce any of these checks yourself in Chrome DevTools.

Response header

Server-side fingerprint: the response header reveals the technology behind the page. Visible in DevTools → Network → response headers.

Server: ^cloudflare$
cf-cache-status:
cf-ray:
Cookie

Cookies set by the platform. Visible in DevTools → Application → Cookies.

__cfduid
Meta tag

<meta> tag injected into the document. Visible by viewing the page source.

<meta name="image" content="//cdn\.cloudflare">
JavaScript global

Window-level global the technology installs on page. Reproducible by typing the path into the DevTools console.

window.CloudFlare
DOM selector

A DOM selector that only this technology's pages render. Verified at runtime by the content script.

img[src*='//cdn.cloudflare']

FAQ

How do I check if a website is using Cloudflare?

Open the page in Chrome, click the Sourcemap Explorer toolbar icon, and read the Stack tab. The popup matches Cloudflare's fingerprint signals (response headers, asset URL prefixes, runtime globals, sourcemap paths) and flags it whenever any combination is found. The same checks can be reproduced manually in DevTools — see the "How we detect" section above.

What Cloudflare version can Sourcemap Explorer detect?

Cloudflare ships as a hosted cdn rather than a bundled npm package, so version-specific detection isn't always possible. Where the platform leaks a version in response headers (`X-Powered-By`, `Server`, generator meta tags) we surface it; otherwise we report presence only.

Where can I read more about Cloudflare?

Official site: https://www.cloudflare.com. For Sourcemap Explorer's detection guide, see the deep-dive link below or the related guides in the cross-link section.

Keep reading on Sourcemap Explorer

Alternative tools

Detected by Sourcemap Explorer

Open the popup on any page running Cloudflareand you'll see the exact version pulled from the bundled package.json when sourcemaps are exposed.

Install free on Chrome