1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-07 20:50:38 +02:00
This commit is contained in:
Andrea Cardaci 2021-04-17 21:02:59 +02:00
parent 65900862c5
commit 5255ea1846

View File

@ -3,8 +3,9 @@ functions:
file-read:
- code: |
LFILE=file-to-read
zip /tmp/temp.zip $LFILE
unzip -p /tmp/temp.zip < /dev/stdout
TF=$(mktemp -u)
zip $TF $LFILE
unzip -p $TF
shell:
- code: |
TF=$(mktemp -u)