← BACK TO OPS CENTER
Write-up Archive
CTF write-ups with tiered hints: try it yourself, and reveal the hint only if you need it. The full solution and flag stay hidden until you choose to see them.
01. OP: GHOST_TRAFFIC
Vuln: DNS TunnelingTraffic looks normal… but what if DNS carries more than domain names? Open the .pcap and filter by "dns".
- Open the .pcap file in Wireshark.
- Apply the "dns" filter to isolate that traffic.
- Look for DNS responses with unusually long text; the flag is there.
[ REVEAL FLAG ]
02. OP: SECURE_DEV
Vuln: Logic Bomb / Insecure eval()The danger is a function that runs text as if it were code. Find it in the Python.
- Read the provided Python code.
- Locate the eval() function, which runs code insecurely.
- Read the comment next to the vulnerability to find the flag.
[ REVEAL FLAG ]
03. OP: DEEP_STATE
Vuln: SteganographyAn image can hide more than it shows. What is at the end of the binary file? Think "strings".
- Download the image.
- In the terminal, run: strings image.png | grep FLAG
- The hidden text at the end of the binary will be displayed.
[ REVEAL FLAG ]
04. OP: FOOTPRINT
Vuln: Command History LeakThe attacker thought they wiped their tracks, but the command history remembers everything.
- Open the attacker_history.txt file.
- Read the commands the attacker used before trying to wipe them.
- One of the "echo" commands reveals the flag.
[ REVEAL FLAG ]
05. OP: ROBOTS
Vuln: Information DisclosureSearch engines obey a special file at the site root. What is that file trying to hide?
- Go to the browser address bar.
- Append "/robots.txt" to the domain.
- Read the plain text to find the secret.
[ REVEAL FLAG ]
06. OP: SOURCE
Vuln: Source Code CommentsWhat you see is not all there is. Look at the source (Ctrl+U)… all the way down.
- Open the CyberEscudo homepage.
- Press Ctrl+U to view the source.
- Scroll to the bottom to find a hidden HTML comment.
[ REVEAL FLAG ]
07. OP: HEADERS
Vuln: HTTP Response HeadersThe server response is chatty. Check the headers in the Network tab.
- Open DevTools (F12) and go to the "Network" tab.
- Reload and click the main document.
- Look for the custom "X-Cyber-Access" header.
[ REVEAL FLAG ]
08. OP: B64-DECODE
Vuln: Base64 EncodingThat text is not encrypted, just "disguised" in a very common format (often ends in "=").
- Copy the encoded string from the briefing.
- Use the platform Base64 tool to decode it.
[ REVEAL FLAG ]
09. OP: COOKIE_MONSTER
Vuln: Unsecured Session CookiesYour browser stores a cookie with data… and it is not as protected as it should be. Its value looks like Base64.
- Open DevTools (F12) → "Application" / "Storage".
- Find the "ctf_session_data" cookie.
- Decode its value from Base64 to plain text.
[ REVEAL FLAG ]
10. OP: DOUBLE-CIPHER
Vuln: Chained Encoding (Base64 + ROT13)One layer is not enough. Decode the obvious first… then notice the letters look "rotated".
- Decode the initial string with Base64.
- The result is readable but encrypted text (Caesar/ROT).
- Apply ROT13 to the result to get the flag.
[ REVEAL FLAG ]
11. OP: JWT-TOKEN
Vuln: JWT Payload ExposureA JWT has 3 dot-separated parts. The signature protects it, but the middle one is only encoded, not encrypted.
- Copy the middle part of the token (between the two dots).
- Base64-decode it to read the JSON.
[ REVEAL FLAG ]
12. OP: BROKEN-HASH
Vuln: MD5 Hash CrackingMD5 is fast… which is why it is broken. That hash probably already lives in a public database.
- Copy the MD5 hash.
- Run it through a cracker (native tool or CrackStation) with Rainbow Tables.
[ REVEAL FLAG ]
13. OP: DIGITAL-TRAIL
Vuln: OSINT / SSL LogsEvery issued SSL cert leaves a public trail (Certificate Transparency, crt.sh). Check the subdomain list.
- Download the simulated crt.sh JSON.
- Inspect the subdomain list.
- One of the leaked subdomains is the flag.
[ REVEAL FLAG ]
14. OP: IDOR-ACCESS
Vuln: Insecure Direct Object Reference (IDOR)If 42 is your profile… what if you try other IDs? The admin one is not always protected.
- Observe the URL: user-api.php?user_id=42.
- Change 42 to 7 (administrator profile).
- The API returns the flag in JSON.
[ REVEAL FLAG ]
15. OP: EXIF-DATA
Vuln: Metadata LeakPhotos store hidden metadata (EXIF). The photographer may have left something written there.
- Download the image.
- Use exiftool or Properties > Details on Windows.
- The flag is in the Comment or Description field.
[ REVEAL FLAG ]
16. OP: XOR-CRYPTO
Vuln: Weak XOR ObfuscationXOR reverses with the same key. What if the key were something as simple as a small number related to "flag"?
- Take the array of hexadecimal bytes.
- The key is the length of "flag": the number 4.
- Python chr(byte ^ 4) or CyberChef (XOR with key 4) to reverse it.
[ REVEAL FLAG ]
17. OP: SHADOW_PATH
Vuln: Path Traversal / WAF BypassThe WAF blocks raw "../" (403)… but does it recognize that same character when URL-encoded?
- The server loads files with "?file=". A raw "../" is blocked by the WAF (403).
- To bypass it, use URL Encoding: "../" equals "%2E%2E%2F".
- The vault is 3 levels up: ?file=%2E%2E%2F%2E%2E%2F%2E%2E%2Fhidden_vault/credentials.txt
[ REVEAL FLAG ]