Skip to main content

019

  • Description: Flag inside the file.

πŸ”Ž Solution​

After opening the file, the content looked unusual - block-like characters with varying heights. Every few characters there was a period separating groups of symbols.

> cat 019.txt 
β–„β–„β–„β–„β–„β–„β–„ β–„β–„ β–„ β–„β–„β–„β–„β–„β–„β–„.β–ˆ β–„β–„β–„ β–ˆ β–„β–€β–„ β–ˆ β–ˆ β–„β–„β–„ β–ˆ.β–ˆ β–ˆβ–ˆβ–ˆ β–ˆ β–ˆβ–„β–„β–ˆ β–ˆ β–ˆβ–ˆβ–ˆ β–ˆ.β–ˆβ–„β–„β–„β–„β–„β–ˆ β–„ β–„ β–„ β–ˆβ–„β–„β–„β–„β–„β–ˆ.β–„β–„β–„β–„ β–„ β–„β–€β–ˆβ–„β–„β–„ β–„β–„β–„ β–„.β–€β–„β–€ β–„ β–„ β–„β–ˆβ–„β–€ β–„β–ˆβ–ˆβ–€β–€ β–„β–„. β–ˆβ–„β–ˆβ–ˆβ–„β–„β–ˆβ–ˆβ–ˆβ–€β–„β–„ β–„β–ˆ β–ˆβ–„β–€β–„.β–„β–„β–„β–„β–„β–„β–„ β–€β–„β–ˆβ–„β–€ β–„β–ˆ β–„ β–€.β–ˆ β–„β–„β–„ β–ˆ β–„β–„ β–€β–€ β–€β–€β–ˆβ–„β–€.β–ˆ β–ˆβ–ˆβ–ˆ β–ˆ β–ˆβ–€β–„β–ˆβ–ˆβ–ˆ β–€ β–„β–€β–€ .β–ˆβ–„β–„β–„β–„β–„β–ˆ β–ˆβ–€ β–€β–€β–€β–ˆβ–€β–„ β–„ β–€

Since the dots appeared to act like separators, I replaced them with line breaks using tr to see if the structure revealed anything meaningful.

> cat 019.txt | tr "." "\n"
β–„β–„β–„β–„β–„β–„β–„ β–„β–„ β–„ β–„β–„β–„β–„β–„β–„β–„
β–ˆ β–„β–„β–„ β–ˆ β–„β–€β–„ β–ˆ β–ˆ β–„β–„β–„ β–ˆ
β–ˆ β–ˆβ–ˆβ–ˆ β–ˆ β–ˆβ–„β–„β–ˆ β–ˆ β–ˆβ–ˆβ–ˆ β–ˆ
β–ˆβ–„β–„β–„β–„β–„β–ˆ β–„ β–„ β–„ β–ˆβ–„β–„β–„β–„β–„β–ˆ
β–„β–„β–„β–„ β–„ β–„β–€β–ˆβ–„β–„β–„ β–„β–„β–„ β–„
β–€β–„β–€ β–„ β–„ β–„β–ˆβ–„β–€ β–„β–ˆβ–ˆβ–€β–€ β–„β–„
β–ˆβ–„β–ˆβ–ˆβ–„β–„β–ˆβ–ˆβ–ˆβ–€β–„β–„ β–„β–ˆ β–ˆβ–„β–€β–„
β–„β–„β–„β–„β–„β–„β–„ β–€β–„β–ˆβ–„β–€ β–„β–ˆ β–„ β–€
β–ˆ β–„β–„β–„ β–ˆ β–„β–„ β–€β–€ β–€β–€β–ˆβ–„β–€
β–ˆ β–ˆβ–ˆβ–ˆ β–ˆ β–ˆβ–€β–„β–ˆβ–ˆβ–ˆ β–€ β–„β–€β–€
β–ˆβ–„β–„β–„β–„β–„β–ˆ β–ˆβ–€ β–€β–€β–€β–ˆβ–€β–„ β–„ β–€

Once formatted, the output clearly resembled a QR code. Scanning it revealed the final flag.

🚩Flag​

HMV{asciiartt}