"pshtt" is the sound you make when you feel mildly astonished. pshtt
("pushed") is a tool to scan domains for HTTPS best practices. It saves its results to a CSV (or JSON).
pshtt
was developed to push organizations— especially large ones like the US Federal Government 🇺🇸 — to adopt HTTPS across the enterprise. Federal .gov domains must comply with M-15-13, a 2015 memorandum from the White House Office of Management and Budget that requires federal agencies to enforce HTTPS on their web sites and services by the end of 2016. Hitting that target will be an astonishing achievement.
pshtt
can be installed directly via pip:
pip install pshtt
pshtt [options] DOMAIN...
pshtt [options] INPUT
pshtt dhs.gov
pshtt --output=homeland.csv --debug dhs.gov us-cert.gov usss.gov
pshtt --sorted current-federal.csv
Note: if INPUT ends with .csv
, domains will be read from CSV. CSV output will always be written to disk (unless --json is specified), defaulting to results.csv
.
-h --help Show this message.
-s --sorted Sort output by domain, A-Z.
-o --output=OUTFILE Name output file. (Defaults to "results".)
-j --json Get results in JSON. (Defaults to CSV.)
-d --debug Print debug output.
-u --user-agent=AGENT Override user agent.
-t --timeout=TIMEOUT Override timeout (in seconds).
-p --preload-cache=PRELOAD Cache preload list, and where to cache it.
docker build -t pshtt/cli .
docker run --rm -it \
--name pshtt \
-v $(pwd):/data \
-e UID=1042 \ /* Change the ownership of the files (**e.g** results)
-e GID=1042 \ to the user with id 1042 and to the group with id 1042. */
pshtt/cli
A domain is checked on its four endpoints:
http://
http://www
https://
https://www
The following values are returned in results.csv
:
Domain
- The domain you're scanning!Base Domain
- The second-level domain ofDomain
.Canonical URL
- A judgment call based on the observed redirect logic of the domain.Live
- The domain is "live" if any endpoint is live.Redirect
- The domain is a "redirect domain" if at least one endpoint is a redirect, and all endpoints are either redirects or down.Redirect to
- If a domain is a "redirect domain", where does it redirect to?Valid HTTPS
- A domain has "valid HTTPS" if it responds on port 443 at its canonical hostname with an unexpired valid certificate for the hostname.Defaults to HTTPS
- A domain "defaults to HTTPS" if its canonical endpoint uses HTTPS.Downgrades HTTPS
- A domain "downgrades HTTPS" if HTTPS is supported in some way, but its canonical HTTPS endpoint immediately redirects internally to HTTP.Strictly Forces HTTPS
- This is different than whether a domain "defaults" to HTTPS. A domain "Strictly Forces HTTPS" if one of the HTTPS endpoints is "live", and if both HTTP endpoints are either down or redirect immediately to any HTTPS URI. An HTTP redirect can go to HTTPS on another domain, as long as it's immediate. (A domain with an invalid cert can still be enforcing HTTPS.)HTTPS Bad Chain
- A domain has a bad chain if either HTTPS endpoints contain a bad chain.HTTPS Bad Hostname
- A domain has a bad hostname if either HTTPS endpoint fails hostname validationHTTPS Expired Cert
- A domain has an expired certificate if the either HTTPS endpoint has an expired certificate.HSTS
- A domain has HTTP Strict Transport Security enabled if its canonical HTTPS endpoint has HSTS enabled.HSTS Header
- This field provides a domain's HSTS header at its canonical endpoint.HSTS Max Age
- A domain's HSTS max-age is its canonical endpoint's max-age.HSTS Entire Domain
- A domain has HSTS enabled for the entire domain if its root HTTPS endpoint has HSTS enabled and uses the HSTSincludeSubDomains
flag.HSTS Preload Ready
- A domain is HSTS "preload ready" if its root HTTPS endpoint has HSTS enabled, has a max-age of at least 18 weeks, and uses theincludeSubDomains
andpreload
flag.HSTS Preloaded
- A domain is HSTS preloaded if its domain name appears in the Chrome preload list, regardless of what header is present on any endpoint.
This code was modeled after Ben Balter's site-inspector, with significant guidance from konklone.
This project is in the worldwide public domain.
This project is in the public domain within the United States, and copyright and related rights in the work worldwide are waived through the CC0 1.0 Universal public domain dedication.
All contributions to this project will be released under the CC0 dedication. By submitting a pull request, you are agreeing to comply with this waiver of copyright interest.