glv2 / bruteforce-salted-openssl

Try to find the password of a file that was encrypted with the 'openssl' command.
Other
211 stars 54 forks source link

aes-256-cbc: is not a salted openssl file #17

Open blshkv opened 5 years ago

blshkv commented 5 years ago

Hi,

I have an encrypted file which supposedly can be decrypted with the following command: openssl aes-256-cbc -K my_key -iv my_iv -in my_key.enc -out my_key -d

However, then I run the bruteforcer (bruteforce-salted-openssl -t 4 -c aes-256-cbc my_key.enc), I'm getting the following: Error: my_key.enc is not a salted openssl file

Any ideas?

glv2 commented 5 years ago

Currently, user supplied raw IVs are not implemented.

Two types of openssl encryption are supported so far:

blshkv commented 5 years ago

I guess, this bug will be about implementing such support. This is something like good to have and not urgent

JasonLeeWeiHern commented 4 years ago

Hi, how to put the nosalt option ? bruteforce-salted-openssl -t 4 -c aes-256-cbc my_key.enc how do i modify this cmd ?

glv2 commented 4 years ago

@JasonLeeWeiHern bruteforce-salted-openssl -n -t 4 -c aes-256-cbc my_key.enc