Hawk

@amshusky18 said:
You were missing a simple arguement in the command…

All arguments are simple, if you know what the right ones are. I think I know what you’re referring to, but what I did was simple, and faster than testing a bunch of options, when I didn’t have a clue which one was right (as it turns out, in hindsight, I know the option I needed, and it would have been one of the last in a list of about 15 different trys, and each would have had to run through my entire wordlist. All in all, I don’t regret just scripting it. ¯_(ツ)_/¯

@sazouki said:
i cracked it with 4 lines bash script lol

You’re right. That’s totally an option. You can do it in 1 line, really (while read line; do {decryption command} 2>1 >/dev/null && echo "password is $line" && break; done < dictionary.txt I just like scripting things nice and neat so I can come back in months and still be able to understand exactly how I got from point A to point B within a few seconds.