Windows and Unix PWN examples of binaries

Two excellent web sites with a reference on how each exe can be used Windows : https://lolbas-project.github.io/ Unix : https://gtfobins.github.io/ On Unix, there is a script based on that that would help enumerate all possible way to elevate privileges. cd /tmp...

SSH Redirect

Reading Time: < 1 minuteThe following example binds local port 8834 on remote host via ssh as localhost port 8834.ssh -R 8834:localhost:8834...

Run Apache as non-Root

On Linux, the issue is that if you want a process to listen to a lower port (<1024), then it needs to be run as root. You can circumvent this by running on http as a high port and redirect this high port to port 80.   Example in config file : Listen 8080And...