Add stdbuf, timeout

This commit is contained in:
Dov Murik 2018-06-12 14:08:22 +00:00
parent f6e3f6898a
commit 7387a2d3ac
2 changed files with 18 additions and 0 deletions

9
_gtfobins/stdbuf.md Normal file
View File

@ -0,0 +1,9 @@
---
functions:
execute-interactive:
- code: stdbuf -i0 /bin/sh
sudo-enabled:
- code: sudo stdbuf -i0 /bin/sh
suid-enabled:
- code: ./stdbuf -i0 /bin/sh -p
---

9
_gtfobins/timeout.md Normal file
View File

@ -0,0 +1,9 @@
---
functions:
execute-interactive:
- code: timeout 7d /bin/sh
sudo-enabled:
- code: sudo timeout --foreground 7d /bin/sh
suid-enabled:
- code: ./timeout 7d /bin/sh -p
---