A penetration tester discovered a code repository and noticed passwords were hashed before they were stored in the database with the following code:
salt = 'saltl23'
hash = hashlib.pbkdf2_hmac('sha256', plaintext, salt, 10000)
The penetration tester recommended the code be updated to the following:
salt = os.urandom(32)
hash = hashlib.pbkdf2_hmac('sha256', plaintext, salt, 10000)
Which of the following steps should the penetration tester recommend?
IamBlackFire
2 months, 1 week agosparseyyy
2 months, 4 weeks agowdmssk
3 months, 2 weeks ago