Created
December 24, 2015 22:53
-
-
Save Igglybuff/d67c5c073f302f9f88ed to your computer and use it in GitHub Desktop.
vinetto + Thumbs.db image extractor for forensics
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# finds all Windows thumbnail caches in the current directory | |
# and all subdirectories, then extracts the thumbnail images | |
# with vinetto to a directory. | |
# | |
# a little dirty, but it works. | |
file_list=() | |
while IFS= read -d $'\0' -r file ; do | |
file_list=("${file_list[@]}" "$file") | |
done < <(find . -name Thumbs.db -print0) | |
for i in "${file_list[@]}"; do | |
vinetto "$i" -o ~/thumbnail-images | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment