Files
alpine-web-werver/bin/ssh.sh
T
2019-04-15 19:36:15 +02:00

18 lines
385 B
Bash
Executable File

#!/bin/sh
echo '\033[35m
__________ __ __
/ ___/ ___// / / /
\__ \\__ \/ /_/ /
___/ /__/ / __ /
/____/____/_/ /_/
\033[0m'
. bin/ssh.sh
sed -i 's/#PermitRootLogin\ prohibit-password/PermitRootLogin no/g' /etc/ssh/sshd_config
sed -i 's/#PermitEmptyPasswords\ yes/PermitEmptyPasswords no/g' /etc/ssh/sshd_config
/etc/init.d/sshd restart
echo "\033[92;1mSSH secured\033[Om"