Skip to content

Instantly share code, notes, and snippets.

@myugan
Created March 24, 2020 10:22
Show Gist options
  • Save myugan/c8836e6a9056de4fa9842650b8fbc879 to your computer and use it in GitHub Desktop.
Save myugan/c8836e6a9056de4fa9842650b8fbc879 to your computer and use it in GitHub Desktop.
Extract all hidden files on spesific directory with password using steghide
#!/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