From a646cbacb5b09139627d882679af81d96f05db2d Mon Sep 17 00:00:00 2001 From: midoks Date: Sun, 20 Nov 2022 20:05:46 +0800 Subject: [PATCH] Update firewall_api.py --- class/core/firewall_api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/class/core/firewall_api.py b/class/core/firewall_api.py index ebbb4d978..d32e18f66 100755 --- a/class/core/firewall_api.py +++ b/class/core/firewall_api.py @@ -309,10 +309,10 @@ class firewall_api: if status == '1': rep = "(#)PasswordAuthentication\s+(\w*)\s*\n" - conf = re.sub(rep, "PasswordAuthentication no\n", conf) + conf = re.sub(rep, "PasswordAuthentication yes\n", conf) else: rep = "(#)PasswordAuthentication\s+(\w*)\s*\n" - conf = re.sub(rep, "PasswordAuthentication yes\n", conf) + conf = re.sub(rep, "PasswordAuthentication no\n", conf) mw.writeFile(file, conf) mw.execShell("systemctl restart sshd.service") mw.writeLog("SSH管理", msg)