bulk extracting hashes
#2
You could easily write a bash script. Do something along the lines of:
Code:
find ~/officedocs -name '*.pdf' -or -name '*.doc' -or -name '*.7z' | xargs office2john.py ARG ARG

Just add each kind of office document that you want to search in the find options, then pipe it all over to xargs office2john.py
Or pass it to a case statement so you can execute the proper application e.g. 7z2john rar2john zip2john etc.

Hope this helps get you in the right direction.


Messages In This Thread
bulk extracting hashes - by mb1shop - 10-31-2017, 05:32 AM
RE: bulk extracting hashes - by MrMeeseeks - 10-31-2017, 04:02 PM