check_sslcerts/create_sites.sh hinzugefügt
This commit is contained in:
14
check_sslcerts/create_sites.sh
Normal file
14
check_sslcerts/create_sites.sh
Normal 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
|
||||||
Reference in New Issue
Block a user