Difference between revisions of "Hardening"

From HPC Wiki
Jump to navigation Jump to search
m ("being more easily checked" ➡ "being more easy to check")
(Undo revision 4957 by Thomas-schneider-d320@ruhr-uni-bochum.de (talk) hab mich verlesen)
Tag: Undo
 
(2 intermediate revisions by 2 users not shown)
Line 10: Line 10:
 
</pre>
 
</pre>
 
A few remarks:
 
A few remarks:
* Disallowing root login doesn't bring any security advantages if you're only allowing secure AuthenticationMethods anyhow. It can even decrease overall security, because if forces you to use sudo, which could be replaces with a malicious (keylogging or command injecting) shell alias within the context of the unprivileged user account you're using sudo from.
+
* Disallowing root login doesn't bring any security advantages if you're only allowing secure AuthenticationMethods anyhow. It can even decrease overall security, because if forces you to use sudo, which could be replaced with a malicious (keylogging or command injecting) shell alias within the context of the unprivileged user account you're using sudo from.
 
* Compared to <code>PasswordAuthentication no</code>, <code>AuthenticationMethods publickey</code> has the advantage of being more easy to check during blackbox security scans, without even requiring a user account on the machine to be scanned. A potential downside is that it will also prevent some 2FA login methods like TOTP from working.
 
* Compared to <code>PasswordAuthentication no</code>, <code>AuthenticationMethods publickey</code> has the advantage of being more easy to check during blackbox security scans, without even requiring a user account on the machine to be scanned. A potential downside is that it will also prevent some 2FA login methods like TOTP from working.

Latest revision as of 13:42, 17 November 2022

Note: This page is still work in progress, so don't use for production (yet).

SSH

/etc/ssh/sshd_config

AuthenticationMethods publickey
ReKeyLimit 1G 10m
AllowAgentForwarding no

A few remarks:

  • Disallowing root login doesn't bring any security advantages if you're only allowing secure AuthenticationMethods anyhow. It can even decrease overall security, because if forces you to use sudo, which could be replaced with a malicious (keylogging or command injecting) shell alias within the context of the unprivileged user account you're using sudo from.
  • Compared to PasswordAuthentication no, AuthenticationMethods publickey has the advantage of being more easy to check during blackbox security scans, without even requiring a user account on the machine to be scanned. A potential downside is that it will also prevent some 2FA login methods like TOTP from working.