Description
This vault uses some complicated arrays! I hope you can make sense of it, special agent. The source code for this vault is here:
Download: VaultDoor1.java
Enumeration
We encountered another Java file that claimed to hide the flag in a more complex manner.
Upon inspecting the Java file using JD-GUI, a popular decompiler, we discovered a clever obfuscation technique. Each element within an array held a single character, and when these characters were sequentially concatenated, the hidden flag was revealed right before our eyes.
Extracting Flag
Below a python script that solve the challenge.