Better security for ssh

This commit is contained in:
Austen Adler 2016-08-18 00:57:47 -04:00
parent 024be39b5a
commit 5607ce7fe7
No known key found for this signature in database
GPG Key ID: 7ECEE590CCDFE3F1

View File

@ -15,8 +15,8 @@ sed -ri'' 's/^(\s*PermitRootLogin\s)/#\1/gI' /etc/ssh/sshd_config
(echo -e "Protocol 2\nUseDNS no\nPermitEmptyPasswords no\nPermitRootLogin no\nIgnoreRhosts yes";cat /etc/ssh/sshd_config)>/tmp/sshd_config
mv /tmp/sshd_config /etc/ssh/sshd_config
diff -urN /etc/ssh/sshd_config.bak /etc/ssh/sshd_config
sshd -t
mv /etc/ssh/sshd_config.bak /etc/ssh/sshd_config
echo Errors:
sshd -t && echo None
EOF
echo "Running script..."
ssh -t $* 'chmod +x /tmp/script.sh;command -v sudo >/dev/null 2>&1 && sudo /tmp/script.sh || /tmp/script.sh;rm /tmp/script.sh'