Created
March 24, 2020 10:22
-
-
Save myugan/c8836e6a9056de4fa9842650b8fbc879 to your computer and use it in GitHub Desktop.
Extract all hidden files on spesific directory with password using steghide
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 | |
dir="Stego\ Files" | |
for i in $dir/*;do | |
# password list | |
pass=( "christmastree" "darksky123" "goldenwatch") | |
for x in "${pass[@]}";do | |
steghide extract -sf "${i}" -p "${x}" 2>/dev/null | |
done | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment