Forum Discussion
GuyIncognito
Bronze I
4 days agoModern Encryption: Demonstrate Your Skills (Q9)
Maybe I'm over/under-thinking this (likely) or maybe there's an issue with this lab (less likely) but I'm struggling on Q9. I've successfully encrypted the file in Q5 and have run the appropriate co...
- 4 days ago
Checking my notes (it's been a while, so apologies if anything has changed since I last looked) - the command I used was:
openssl enc -d -aes-256-cbc -in encrypted_file_AES.enc -nosalt -pbkdf2 -k {password_from_aircrack} -a
Not sure about passing it using "-pass pass:"?!?
autom8on
Silver I
4 days agoChecking my notes (it's been a while, so apologies if anything has changed since I last looked) - the command I used was:
openssl enc -d -aes-256-cbc -in encrypted_file_AES.enc -nosalt -pbkdf2 -k {password_from_aircrack} -a
Not sure about passing it using "-pass pass:"?!?
GuyIncognito
Bronze I
4 days agoWow, thank you. The -pass pass:"xxx" is the equivilant to the -k xxx command but it was the -a option I was missing. Didn't think about needing to Base64 decode it while decrypting. Thanks again