I Like Matrix
Problem
Solution
Based on the Description we know that:
The encryption algorithm used is Hill Cipher
It was Encrypted twice
The matrix key is a 2x2 Fibonacci's matrix
There's a few configurations for Hill Cipher namely,
Alphabet (26 let. A=0) ABCDEFGHIJKLMNOPQRSTUVWXYZ
Alphabet (26 let. A=1) ZABCDEFGHIJKLMNOPQRSTUVWXY
Alphabet (27 char. A=0) ABCDEFGHIJKLMNOPQRSTUVWXYZ_
Alphabet (27 char. A=1) _ABCDEFGHIJKLMNOPQRSTUVWXYZ
We tried deciphering using Fibonacci's matrix with every configurations possible but no result alas we had to revert to brute force approach and using online tools, eventually we found the flag with the following configurations
Ciphertext = NigvPZDPZ{YYWamFwHmL_cJ_hjS_xIjh_JzdQmw}
Config: {0,5,1,2} (A=0)
Plaintext = IndwTDTLO{FCKmaUbErI_xT_heH_ePth_LhuLms}
Flag
FindITCTF{OKComPuTeR_iS_thE_bEst_AlbUum}
Last updated