Compare commits

...

2 Commits

3 changed files with 33 additions and 2 deletions

View File

@ -44,10 +44,10 @@ for cert_file in certs/*.pem; do
key_size=$(expr "$key_size" : '^..\([0-9]*\).*$')
fi
sig_algo=$(echo "$cert_details" | grep ' Signature Algorithm:' | cut -d ':' -f 2)
sig_algo=$(echo "$cert_details" | grep ' Signature Algorithm:' | cut -d ':' -f 2 | cut -c2-)
# Add a table row.
md_table="$md_table| [$host](gemini://$host/) | [PEM]($cert_file) | $end_date | $key_algo | $key_size |$sig_algo |\n"
md_table="$md_table| [$host](gemini://$host/) | [PEM]($cert_file) | $end_date | $key_algo | $key_size | $sig_algo |\n"
csv_table="$csv_table""$host,$end_date,$key_algo,$key_size,$sig_algo\n"
done

25
excluded-hosts Normal file
View File

@ -0,0 +1,25 @@
# Specific hosts
tofu-tester\.random-projects\.net:1966
localhost(:[0-9]+)?
# Private IP addresses
# https://en.wikipedia.org/wiki/Private_network
# TODO: 100.64.0.0/10, fc00::/8 and fd00::/8
127\.0\.0\.1(:[0-9]+)?
10\.[0-9]+\.[0-9]+\.[0-9]+(:[0-9]+)?
192\.168\.[0-9]+\.[0-9]+(:[0-9]+)?
172\.((1[6-9])|(2[0-9])|(3[0-1]))\.[0-9]+\.[0-9]+(:[0-9]+)?
169\.254\.[0-9]+\.[0-9]+(:[0-9]+)?
::1
\[::1\](:[0-9]+)?
# Reserved TLDs
# https://tools.ietf.org/id/draft-chapin-additional-reserved-tlds-01.html
.*\.test(:[0-9]+)?
.*\.example(:[0-9]+)?
.*\.invalid(:[0-9]+)?
.*\.localhost(:[0-9]+)?
.*\.localdomain(:[0-9]+)?
.*\.domain(:[0-9]+)?
.*\.lan(:[0-9]+)?
.*\.home(:[0-9]+)?
.*\.corp(:[0-9]+)?
.*\.mail(:[0-9]+)?

View File

@ -36,6 +36,12 @@ $hosts2"
# Convert punycode to unicode; sort entries; remove duplicates; remove empty lines.
hosts=$(echo "$hosts" | idn --allow-unassigned --idna-to-unicode | sort -fu | awk NF)
# Remove hosts which contain neither "." nor ":", such as "localhost".
hosts=$(echo "$hosts" | grep '\.\|:')
# Remove explicitly excluded hosts.
hosts=$(echo "$hosts" | grep -vxEf excluded-hosts)
if [ -z "$hosts" ]; then
>&2 echo "hosts file downloads failed."
exit 1