If you consider yourself a hacker and you are writing a zombie script that will try to guess someones password
First of all, this isn’t how a hacker will work.
They will first and foremost discover everything possible about the application, server environment, and use this to discover possible vulnerabilities.
A ‘zombie’ script is always the last resort, as it takes an almost infinitely large amount of time, it’s intensive, and the hacker will get blacklisted by iptables before they’re even close to getting a password.
A sha1 salted hash can only be cracked with brute force…
To crack a sha1 hash with brute force, you may have to try 2 to the power 80 attempts. Way too much for any hacker to attempt.
Whereas, in the event of your encryption key being discovered (due to the ‘clever’ hacker probing your server environment, php version, ci version, and finding a vulnerability), a hacker could use the encryption key to get your passwords with no effort at all.
It’s much much more likely you’ll be hacked after an extensive recon task and research rather than through blind luck or brute force.
