Browse Source

Increase ssh client security by specifying preferred widgets

master
Jonathan "Duke" Leto 10 years ago
parent
commit
00adc41570
  1. 10
      config/.ssh/config

10
config/.ssh/config

@ -1,3 +1,13 @@
# https://stribika.github.io/2015/01/04/secure-secure-shell.html
# Github supports neither AE nor Encrypt-then-MAC. LOL
Host github.com
MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-ripemd160-etm@openssh.com,umac-128-etm@openssh.com,hmac-sha2-512
Host *
MACs hmac-sha2-512-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-ripemd160-etm@openssh.com,umac-128-etm@openssh.com
Ciphers chacha20-poly1305@openssh.com,aes256-gcm@openssh.com,aes128-gcm@openssh.com,aes256-ctr,aes192-ctr,aes128-ctr
KexAlgorithms curve25519-sha256@libssh.org,diffie-hellman-group-exchange-sha256
#TCPKeepAlive Yes
# Aliases for the GCC Compile Farm
Host gcc54

Loading…
Cancel
Save