mirror of
https://github.com/mail-in-a-box/mailinabox.git
synced 2025-04-03 00:07:05 +00:00
Update status_checks.py
Switching to a more robust way of checking for PasswordAuthentication
This commit is contained in:
parent
0314554207
commit
d749bd0ab6
@ -207,22 +207,25 @@ def check_ufw(env, output):
|
|||||||
def is_port_allowed(ufw, port):
|
def is_port_allowed(ufw, port):
|
||||||
return any(re.match(str(port) +"[/ \t].*", item) for item in ufw)
|
return any(re.match(str(port) +"[/ \t].*", item) for item in ufw)
|
||||||
|
|
||||||
|
import subprocess
|
||||||
|
|
||||||
def check_ssh_password(env, output):
|
def check_ssh_password(env, output):
|
||||||
# Check that SSH login with password is disabled. The openssh-server
|
# Check that SSH login with password is disabled using the sshd command.
|
||||||
# package may not be installed so check that before trying to access
|
try:
|
||||||
# the configuration file.
|
result = subprocess.run(['sshd', '-T'], stdout=subprocess.PIPE, stderr=subprocess.PIPE, text=True)
|
||||||
if not os.path.exists("/etc/ssh/sshd_config"):
|
if result.stderr:
|
||||||
return
|
output.print_error("Error checking SSH configuration: " + result.stderr)
|
||||||
with open("/etc/ssh/sshd_config", "r") as f:
|
return
|
||||||
sshd = f.read()
|
|
||||||
if re.search("\nPasswordAuthentication\s+yes", sshd) \
|
if 'passwordauthentication yes' in result.stdout.lower():
|
||||||
or not re.search("\nPasswordAuthentication\s+no", sshd):
|
output.print_error("""The SSH server on this machine permits password-based login. A more secure
|
||||||
output.print_error("""The SSH server on this machine permits password-based login. A more secure
|
way to log in is using a public key. Add your SSH public key to $HOME/.ssh/authorized_keys, check
|
||||||
way to log in is using a public key. Add your SSH public key to $HOME/.ssh/authorized_keys, check
|
that you can log in without a password, set the option 'PasswordAuthentication no' in
|
||||||
that you can log in without a password, set the option 'PasswordAuthentication no' in
|
/etc/ssh/sshd_config, and then restart the openssh via 'sudo service ssh restart'.""")
|
||||||
/etc/ssh/sshd_config, and then restart the openssh via 'sudo service ssh restart'.""")
|
else:
|
||||||
else:
|
output.print_ok("SSH disallows password-based login.")
|
||||||
output.print_ok("SSH disallows password-based login.")
|
except FileNotFoundError:
|
||||||
|
output.print_error("sshd command not found. Please ensure OpenSSH server is installed and accessible.")
|
||||||
|
|
||||||
def is_reboot_needed_due_to_package_installation():
|
def is_reboot_needed_due_to_package_installation():
|
||||||
return os.path.exists("/var/run/reboot-required")
|
return os.path.exists("/var/run/reboot-required")
|
||||||
|
Loading…
Reference in New Issue
Block a user