mirror of
https://github.com/trailofbits/algo
synced 2024-11-16 12:12:55 +00:00
95e0134f21
2. Move to the ed25519 algorithm 3. Delete unneeded option RSAAuthentication Fixes #272
55 lines
2.0 KiB
Django/Jinja
55 lines
2.0 KiB
Django/Jinja
Port 22
|
|
# ListenAddress ::
|
|
# ListenAddress 0.0.0.0
|
|
Protocol 2
|
|
|
|
# LogLevel VERBOSE logs user's key fingerprint on login.
|
|
# Needed to have a clear audit log of which keys were used to log in.
|
|
SyslogFacility AUTH
|
|
LogLevel VERBOSE
|
|
|
|
# Use kernel sandbox mechanisms where possible
|
|
# Systrace on OpenBSD, Seccomp on Linux, seatbelt on macOS X (Darwin), rlimit elsewhere.
|
|
UsePrivilegeSeparation sandbox
|
|
|
|
# Handy for keeping network connections alive
|
|
TCPKeepAlive yes
|
|
ClientAliveInterval 120
|
|
|
|
# Authentication
|
|
UsePAM yes
|
|
PermitRootLogin without-password
|
|
StrictModes yes
|
|
PubkeyAuthentication yes
|
|
AcceptEnv LANG LC_*
|
|
|
|
# Turn off a lot of features
|
|
IgnoreRhosts yes
|
|
RhostsRSAAuthentication no
|
|
HostbasedAuthentication no
|
|
PermitEmptyPasswords no
|
|
ChallengeResponseAuthentication no
|
|
PasswordAuthentication no
|
|
UseDNS no
|
|
|
|
# Do not enable sftp
|
|
# If you DO enable it, use this line to log which files sftp users read/write
|
|
# Subsystem sftp /usr/lib/ssh/sftp-server -f AUTHPRIV -l INFO
|
|
|
|
# This makes ansible faster
|
|
PrintMotd no
|
|
PrintLastLog yes
|
|
|
|
# Use only modern host keys
|
|
HostKey /etc/ssh/ssh_host_ecdsa_key
|
|
HostKey /etc/ssh/ssh_host_ed25519_key
|
|
|
|
# Use only modern ciphers
|
|
KexAlgorithms curve25519-sha256@libssh.org,ecdh-sha2-nistp521,ecdh-sha2-nistp384,ecdh-sha2-nistp256
|
|
Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com
|
|
MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,umac-128-etm@openssh.com
|
|
# TODO: I haven't seen anyone review these yet
|
|
# HostKeyAlgorithms ecdsa-sha2-nistp256-cert-v01@openssh.com,ecdsa-sha2-nistp384-cert-v01@openssh.com,ecdsa-sha2-nistp521-cert-v01@openssh.com,ssh-ed25519-cert-v01@openssh.com,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,ssh-ed25519
|
|
# TODO: I haven't seen anyone review these yet
|
|
# PubkeyAcceptedKeyTypes ecdsa-sha2-nistp256-cert-v01@openssh.com,ecdsa-sha2-nistp384-cert-v01@openssh.com,ecdsa-sha2-nistp521-cert-v01@openssh.com,ssh-ed25519-cert-v01@openssh.com,ecdsa-sha2-nistp256,ecdsa-sha2-nistp384,ecdsa-sha2-nistp521,ssh-ed25519
|