Reading 5.1 Week 6 Prep - FlameSpyro/Tech-Journal GitHub Wiki
Reading 5.1 - Week 6 Prep
- Find a password of interest within the rockyou.txt file or another dictionary.
- Create an MD5 representation for the given password with echo -n 'passwordgoeshere' | md5sum
- Create a SHA256 representation for that password too. (figure out how to do this)
- I just used P@ssw0rd like the video
- Heres the cmds:
echo -n P@ssw0rd | md5sum
echo -n P@ssw0rd | sha256sum