We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
You can read the list of domain names where SSL certificates are valid.
Using the openssl CLI:
openssl s_client -showcerts -connect bundestag.de:443 < /dev/null | openssl x509 -text | egrep -io 'DNS:[\*a-z\.\-]+' | cut -d : -f 2
Which prints this list:
adler.bundestag.de adleradmin.bundestag.de awstats.bundestag.de bundestag.de cms.bundestag.de cms.dev.bundestag.de cms.prod.bundestag.de cms.schulung.bundestag.de cms.staging.bundestag.de cmslogin.bundestag.de das-parlament.de datenaustausch.bundestag.de editor.bundestag.de editor.dev.bundestag.de editor.prod.bundestag.de editor.schulung.bundestag.de editor.staging.bundestag.de forum.bundestag.de kontakt.bundestag.de kontakt.dev.bundestag.de kontakt.prod.bundestag.de kontakt.schulung.bundestag.de kontakt.staging.bundestag.de newsletteradmin.bundestag.de newsletteradmin.mitmischen.de opac.bibliothek.bundestag.de opac.bundestag.de sdc.bundestag.de sdc.mitmischen.de statistik.bundestag.de statistik.dev.bundestag.de statistik.schulung.bundestag.de statistik.staging.bundestag.de studio.bundestag.de studio.dev.bundestag.de studio.prod.bundestag.de studio.schulung.bundestag.de studio.staging.bundestag.de suche.bundestag.de suche.dev.bundestag.de suche.prod.bundestag.de suche.schulung.bundestag.de suche.staging.bundestag.de visite.bundestag.de werkstatt.bundestag.de www.bundestag.de www.das-parlament.de www.dev.bundestag.de www.dev.das-parlament.de www.kuppelkucker.de www.mitmischen.de www.parlamentsprofi.de www.prod.bundestag.de www.schulung.bundestag.de www.staging.bundestag.de www.staging.das-parlament.de
Or append | rev | cut -d . -f 1-2 | rev | sort | uniq to get a unique list of second-level domains:
| rev | cut -d . -f 1-2 | rev | sort | uniq
bundestag.de das-parlament.de kuppelkucker.de mitmischen.de parlamentsprofi.de
The text was updated successfully, but these errors were encountered:
No branches or pull requests
You can read the list of domain names where SSL certificates are valid.
Using the openssl CLI:
Which prints this list:
Or append
| rev | cut -d . -f 1-2 | rev | sort | uniq
to get a unique list of second-level domains:The text was updated successfully, but these errors were encountered: