Posted in Uncategorized grab all dc certificates sd 20230425100726 Leave a Comment on grab all dc certificates 0 1128 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 Author: sd Website