From 9d4842b68f253e0a3fa6949a9a0482406f9078e0 Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Thu, 25 May 2023 21:58:17 -0500 Subject: [PATCH] Update sites.inc --- inc/sites.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/inc/sites.inc b/inc/sites.inc index 441f966e..b89bbba5 100755 --- a/inc/sites.inc +++ b/inc/sites.inc @@ -563,7 +563,7 @@ SITEINFO(){ until [ "${edit}" = "c" ]; do echo -e "\033[K${idsCL[Cyan]}!) Site Address: ${idsST[Bold]}${site}${idsST[Reset]}" - echo -e "\033[K${idsCL[Cyan]}!) Site Type: ${idsST[Bold]}${type}${idsST[Reset]}" + echo -e "\033[K${idsCL[Cyan]}1) Site Type: ${idsST[Bold]}${type}${idsST[Reset]}" echo -e "\033[K${idsCL[Cyan]}!) SSL Secure: ${idsST[Bold]}${ssl}${idsST[Reset]} - ${idsCL[LightCyan]}${SUBJECTNAMES}" echo -e "\033[K${idsCL[Cyan]}3) HSTS Enabled ${idsST[Bold]}${hsts}${idsST[Reset]}" echo -e "\033[K${idsCL[Cyan]}4) Web Sockets: ${idsST[Bold]}${wbskt}${idsST[Reset]}" @@ -579,6 +579,7 @@ SITEINFO(){ read -n 1 edit case "${edit}" in + 1) [ "${type}" == "HTTP" ] && hsts='Proxy' || hsts='HTTP';; 3) [ "${hsts}" == "-" ] && hsts='Yes' || hsts='-';; 4) [ "${wbskt}" == "-" ] && wbskt='Yes' || wbskt='-';; 5) [ "${explt}" == "-" ] && explt='Yes' || explt='-';;