Having fun while learning about and pivoting into the world of DFIR.
by ogmini
Continuing with my writeups on my “fails” or the ones I just couldn’t figure out in the timeframe alloted. I want to talk about how I went about trying to solve the challenge and where I went wrong. This should help me in the future by highlighting weaknesses and areas for improvement. Each post will focus on just one “fail” challenge. You can find all my writeups here.
Title: Dressing, with a dash, of 17 spices
Description: Decode the secret message
This challenge was under the Cipher section and worth 50 points.
I’m learning from Andro6’s writeups located at https://medium.com/@andro6.ucsy/magnet-ctf-2025-writeups-fb73793eda8b. A lot of the cipher challenges appear to rely on recognizing what encoding is being used either via the hint or just familiarity. In this case, I was on the right track and had figured out the morse code part of the challenge. The second hint of 17 was a reference to how may characters to shift for the Caesar Cipher. The Caeser Cipher is used to shift letters in the alphabet and requires translating the decoded morse code numbers to their representative letters. The letters are than shifted by 17 to get the message. Alternatively, dcode can bruteforce the Caesar Cipher and identifies 17 as the shift.
Steps: