How-to-fix-cve-2023-38408-a-remote-code-execution-vulnerability
wget https://cdn.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-9.3p2.tar.gz
chmod +x openssh-9.3p2.tar.gz
tar -xf openssh-9.3p2.tar.gz
cd openssh-9.3p2/
sudo apt install libpam0g-dev libselinux1-dev -y
sudo apt-get install build-essential -y
sudo apt install libz-dev libssl-dev -y
./configure --with-md5-passwords --with-pam --with-selinux --with-privsep-path=/var/lib/sshd/ --sysconfdir=/etc/ssh
make
make install
systemctl restart ssh
ssh -V
(https://thesecmaster.com/how-to-fix-cve-2023-38408-a-remote-code-execution-vulnerability-in-opensshs-forwarded-ssh-agent/)