check_sslcerts/create_sites.sh hinzugefügt

This commit is contained in:
2025-05-28 10:43:03 +02:00
parent 909ed6cf34
commit b24febb8a8

View File

@@ -0,0 +1,14 @@
#!/bin/bash
domains="conet-services.de tenoc.de hosting-ffm.de bankhaus-scheich.de"
for domain in `echo $domains`
do
curl -s "https://crt.sh/?q=%25.$domain&output=json" \
| grep -oE '"name_value":"[^"]+"' \
| cut -d':' -f2 \
| tr -d '"' \
| sed 's/\\n.*//' \
| grep -v '\*' \
| sort -u
done