From f4afd355ac0548a4d2c2de723c1ab8d4f36c950b Mon Sep 17 00:00:00 2001 From: Andrea Veri Date: Wed, 28 Mar 2018 16:32:02 +0200 Subject: [PATCH] Make sure wildcards are escaped properly whenever the SANs list contains any of them --- getssl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getssl b/getssl index 9d49421..acecdb6 100755 --- a/getssl +++ b/getssl @@ -2116,7 +2116,7 @@ if [[ $API -eq 2 ]]; then dn=0 for d in $alldomains; do # get authorizations link - AuthLink[$dn]=$(json_get "$response" "identifiers" "value" "$d" "authorizations" "x") + AuthLink[$dn]=$(json_get "$response" "identifiers" "value" "${d/\*/\\*}" "authorizations" "x") debug "authorizations link for $d - ${AuthLink[$dn]}" ((dn++)) done