Amazon Web Services
Amazon Web Services (AWS) is a comprehensive cloud services platform offering compute power, database storage, content delivery and other functionality.
About
Amazon Web Services (AWS) is a comprehensive cloud services platform offering compute power, database storage, content delivery and other functionality.
Categories: PaaS
Quick facts
Detection methodology for PaaS
Platform-as-a-Service offerings show up as response headers and deployment domains. Heroku's `Server: Cowboy` plus `*.herokuapp.com`; Render's `*.onrender.com`; Fly.io's `*.fly.dev`. We pair the host detection with framework signals so you can tell what's running on the platform — a Heroku dyno serving Rails looks very different from a Heroku dyno serving Node, even though both fit the same hosting fingerprint.
How we detect Amazon Web Services
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.
Server-side fingerprint: the response header reveals the technology behind the page. Visible in DevTools → Network → response headers.
x-amz-delete-marker:
x-amz-err-code:
x-amz-err-message:
x-amz-id-2:
x-amz-req-time-micros:
x-amz-request-id:
x-amz-rid:
x-amz-version-id:
Script URL pattern. Typically a CDN host or chunk path that ships with the technology.
\.amazonaws\.com
FAQ
How do I check if a website is using Amazon Web Services?
Open the page in Chrome, click the Sourcemap Explorer toolbar icon, and read the Stack tab. The popup matches Amazon Web Services'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 Amazon Web Services version can Sourcemap Explorer detect?
Amazon Web Services ships as a hosted paas 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.
Is Amazon Web Services a SaaS or self-hosted?
Amazon Web Services is offered as a hosted SaaS product. Detection runs against the JavaScript SDK or asset-URL fingerprints the platform ships into pages.
Where can I read more about Amazon Web Services?
Official site: https://aws.amazon.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 Amazon Web Servicesand you'll see the exact version pulled from the bundled package.json when sourcemaps are exposed.