Tags: vim vimcrypt
Rating:
Challenge statement:
I know the flag is in this file! I just cannot open it for some reason...
Solution:
After downloaded the file, we knew that the file was encrypted by vim
To decrypt the message we can use vim decryptor written by nlitsme
I used rockyou wordlist and this command to decrypt the text message
python vimdecrypt.py --dictionary /usr/share/wordlists/rockyou.txt ~/Desktop/Hacktivity\ CTF/vencrypted.txt
After run that command we will get the result like this
Using vim to open the vencrypted.txt and enter the password you got before
vim encrypted.txt
After we opened it we found the flag is 'flag{sometimes_it_really_do_be_like_that_tho}'
FLAG: flag{sometimes_it_really_do_be_like_that_tho}