该漏洞是由于 OpenSSH 服务 (sshd) 中的信号处理程序竞争问题,未经身份验证的攻击者可以利用此漏洞在 Linux 系统上以 root 身份执行任意代码。目前该漏洞技术细节已在互联网上公开,该漏洞影响范围较大,建议尽快做好自查及防护。
影响版本: 8.5p1 <= OpenSSH < 9.8p1
官方补丁下载
Debian & Ubuntu 发行版安全更新跟踪与公告
Debian
Ubuntu
漏洞修复
Debian
这次安全问题主要影响 Debian 12
。您可以通过以下命令更新系统并检查 OpenSSH 版本号是否为最新:
apt update && apt install --only-upgrade openssh-server openssh-client
ssh -V
若显示 OpenSSH_9.2p1 Debian-2+deb12u3
,说明已更新至无问题版本。注意 u3
结尾,这是无问题版本的标志。
如果不是上述版本,可能是因为您的 Debian 没有配置安全源。请按以下步骤添加安全源并更新:
编辑源列表文件:
vi /etc/apt/sources.list
添加以下内容:
deb http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
deb-src http://security.debian.org/debian-security bookworm-security main contrib non-free non-free-firmware
更新系统:
apt update && apt install --only-upgrade openssh-server openssh-client
Ubuntu
apt update && apt install --only-upgrade openssh-server openssh-client
ssh -V
显示以下版本说明修复
Ubuntu 24.04:9.6p1-3ubuntu13.3
Ubuntu 23.10:9.3p1-1ubuntu3.6
Ubuntu 22.04:8.9p1-3ubuntu0.10
评论