From bd225202972f73c5d044286bf199e48b52d42660 Mon Sep 17 00:00:00 2001 From: micha4w <85169193+micha4w@users.noreply.github.com> Date: Fri, 18 Jul 2025 00:56:43 +0200 Subject: [PATCH] fix: invalid regex ranges in dns_cyon --- dnsapi/dns_cyon.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dnsapi/dns_cyon.sh b/dnsapi/dns_cyon.sh index a585e772..fd3e4937 100644 --- a/dnsapi/dns_cyon.sh +++ b/dnsapi/dns_cyon.sh @@ -304,11 +304,11 @@ _cyon_get_response_message() { } _cyon_get_response_status() { - _egrep_o '"status":[a-zA-z0-9]*' | cut -d : -f 2 + _egrep_o '"status":[a-zA-Z0-9]*' | cut -d : -f 2 } _cyon_get_validation_status() { - _egrep_o '"valid":[a-zA-z0-9]*' | cut -d : -f 2 + _egrep_o '"valid":[a-zA-Z0-9]*' | cut -d : -f 2 } _cyon_get_response_success() { @@ -316,7 +316,7 @@ _cyon_get_response_success() { } _cyon_get_environment_change_status() { - _egrep_o '"authenticated":[a-zA-z0-9]*' | cut -d : -f 2 + _egrep_o '"authenticated":[a-zA-Z0-9]*' | cut -d : -f 2 } _cyon_check_if_2fa_missed() {