main: Added tlsa and a few bug fixes
This commit is contained in:
11
worker/tlsa.sh
Normal file
11
worker/tlsa.sh
Normal file
@@ -0,0 +1,11 @@
|
||||
#!/bin/bash
|
||||
|
||||
domain=$1
|
||||
# Check if args passed
|
||||
if [ -z "$1" ]
|
||||
then
|
||||
echo "No domain name supplied"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo -n "3 1 1 " && openssl x509 -in /etc/ssl/$domain.crt -pubkey -noout | openssl pkey -pubin -outform der | openssl dgst -sha256 -binary | xxd -p -u -c 32
|
||||
Reference in New Issue
Block a user