Last active
July 3, 2024 16:12
-
-
Save FlorianHeigl/00560a59981395bddd5670f5d06f4c08 to your computer and use it in GitHub Desktop.
Alpine regreSSHion mititgation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# switch ssh daemon from OpenSSH to dropbear | |
# temporary workaround | |
service sshd stop | |
rc-update del sshd | |
setup-sshd # select dropbear | |
# replace ssh host keys from openssh | |
# (or update ssh host keys `ssh-keyscan`) | |
apk add dropbear-convert | |
dropbearconvert openssh dropbear /etc/ssh/ssh_host_ed25519_key /etc/dropbear/dropbear_ed25519_host_key | |
dropbearconvert openssh dropbear /etc/ssh/ssh_host_ecdsa_key /etc/dropbear/dropbear_ecdsa_host_key | |
dropbearconvert openssh dropbear /etc/ssh/ssh_host_rsa_key /etc/dropbear/dropbear_rsa_host_key | |
dropbearconvert openssh dropbear /etc/ssh/ssh_host_dsa_key /etc/dropbear/dropbear_dss_host_key | |
# restart dropbear | |
service dropbear restart | |
# switch back to openssh | |
# pull in updates | |
apk upgrade -a -U | |
# switch daemons, now manually | |
service dropbear stop | |
rc-update del dropbear | |
rc-update add sshd | |
service sshd start |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Alpine also has a recent OpenSSH so the real mitigation settings (
PerSourcePenalties
) can be used there https://www.heise.de/hintergrund/regreSSHion-Luecke-Neues-SSH-Feature-bietet-Schutz-Proof-of-Concept-ist-keiner-9788285.html