stegseek
stegseek copied to clipboard
Feature request
Requesting for a feature to crack passwords of all compatible files in a directory to avoid the use of scripts
Due to the way steghide (and as a result stegseek) is set up, it's not trivial to have multiple images loaded at once, which is necessary for batch cracking to be beneficial.
If you just want to crack different files sequentially, you can use a bash one-liner:
find . -name "*.jpg" -exec stegseek {} /path/to/wordlist.txt \;
imo, adding a recursive
flag doesn't make sense unless it does something more than just cracking files sequentially like the above find
command.