1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-11-08 07:49:17 +01:00

New command: column

This commit is contained in:
Emanuel Duss 2020-11-12 14:21:00 +01:00
parent 00902fc035
commit ff997ac104

15
_gtfobins/column.md Normal file

@ -0,0 +1,15 @@
---
functions:
file-read:
- code: |
LFILE=file_to_read
column "$LFILE"
suid:
- code: |
LFILE=file_to_read
./column "$LFILE"
sudo:
- code: |
LFILE=file_to_read
sudo column "$LFILE"
---