HotPause
CATEGORY - OSINT
Last updated
CATEGORY - OSINT
Last updated
HotPause is an open-source intelligence challenge focused on uncovering information from a particular event. It begins with identifying the precise location where a video was filmed. The next task is to locate an agent's specific seat within that venue. The challenge concludes by retrieving the recorded data stream from a Flipper Zero during the beat drop of Chris Martin's "I love you so..." to determine the right color
The challenge provides an .mp4
file, which suggests that the first step is to analyze the video for any identifiable details. To make the investigation easier, I took a screenshot from the video at a key moment.
To find the event location, I performed a reverse image search using Google Images.
The results showed multiple Instagram posts with similar visuals, one of which revealed the city name.
Initially, I tried MUMBAI, but it was incorrect. After retrying with AHMEDABAD, I got the correct answer.
I began by searching "Coldplay Ahmedabad seating chart" on Google.
Comparing the seating chart with the screenshot from the video, I could see that the agent was sitting on the right side of the stadium.
To find the exact block, I started testing different inputs, beginning with P block and moving to Q block. After multiple attempts, I found the correct answer: Q3.
Step 3 took me way longer than I expected. I spent hours trying different approaches before finally figuring it out. I even asked for hints to make sure I was on the right track. Along the way, I fell into several rabbit holes—attempting to decode the data as binary, misinterpreting the format as hexadecimal, and overcomplicating the extraction process. After a lot of trial and error, I finally found the correct answer.
To figure out the correct answer, I started by searching "Coldplay India concert wristband" on Google. This led me to an article explaining how the LED wristbands work:
From there, I learned that the wristbands use a specific technology, so my next search was "Coldplay wristband infrared." This brought me to a discussion on Reddit:
While scrolling through the discussion, I found a GitHub repository related to PixMob IR reverse engineering:
At first, I explored this repo but couldn’t find a direct answer. However, at the bottom of the page, I found another linked repository:
Inside this repo, I found a file named PixMob_main.ir and searched for an instance of the yellow color. That’s when I found the correct data stream:
This turned out to be the correct answer.
This challenge was both fun and difficult, pushing me to think outside the box. It took a lot of trial and error, but I’m happy I was able to solve it—especially since this was my first CTF. One key takeaway from this experience is to not overcomplicate things. Always check the simplest explanations first before diving into more complex solutions.