Author: sd
grab all dc certificates
nslookup YOUR_DOMAIN_HERE | grep "Address: " | awk '{ print $NF }' | while read _HOST ; do echo | openssl s_client -connect ${_HOST}:636 2>/dev/null | openssl x509 -text | grep -A 100 "BEGIN CERTIFICATE" > ${_HOST}.pem ; done
list ciphers supported by an http server
nmap --script ssl-enum-ciphers -p 443 www.example.com
…und natuerlich geht das nicht nur fuer http, sondern jede ssl verbindung.
bitwarden docker is eating disk
nach ner weile sammelt sich hier unbenutzter kram: /var/lib/docker/overlay2
so wird man den los:
docker system prune --all --volumes --force