Description
Option 'b' in this Python script should print the flag but prints an error instead.
Setup
Download serpentine.py from the challenge page.
Open it in a text editor and read through the menu logic.
Solution
Want to try it yourself first?
The guided walkthrough reveals hints one step at a time.
Step 1Identify the bug
ObservationThe description says option 'b' prints an error instead of the flag. That points at a logic error in the 'b' branch rather than a syntax problem, so running the script shows what the branch actually does versus what it should.Run the script and press 'b'. Instead of printing the flag, it prints a message saying it called the wrong function. Open the source and find the 'b' branch - it calls a placeholder print statement instead of print_flag().pythonpython3 serpentine.pyWhat didn't work first
Tried: Run the script and assume the error is a Python syntax error that prevents execution.
The script parses cleanly and the menu launches, so there is no syntax error to find. The problem is a logic bug in the 'b' branch calling the wrong function, and it only shows up at runtime when that branch runs. python3 -m py_compile reports nothing, which points you away from the real problem.
Tried: Search the script for 'flag' with grep to find where the flag is stored as a string literal.
The flag is not a plain string in the source; print_flag() builds or prints it. Grepping for 'flag' shows the function definition and the broken 'b' branch, but no hardcoded value. The job is tracing which branch runs when 'b' is pressed, not extracting a static string.
Learn more
This challenge teaches a fundamental debugging skill: reading error messages and tracing program flow. The script runs without crashing (no syntax error), but produces the wrong output - a logic bug rather than a syntax error. Logic bugs are often harder to find because the interpreter cannot detect them; only you can, by understanding what the code should do versus what it actually does.
The menu-driven structure (options a, b, c, etc.) is a common pattern in interactive scripts and command-line tools. Each option maps to a branch in an
if/elif/elsechain. When a branch calls the wrong function or omits a function call entirely, the user sees unexpected behavior rather than a crash.A key technique here is reading the source before running. Once you know the script has a "b" option that should print the flag, you can search for that branch in the code and immediately see what it actually does - without needing to run and interact with the script repeatedly.
Step 2Fix the 'b' branch
ObservationThe source shows the 'b' branch calling the wrong function instead of print_flag(). A single-line substitution putting print_flag() back is the minimal fix.In the elif branch for option 'b', replace the incorrect print statement with a call to print_flag(). The function is already defined at the top of the script.Learn more
Functions in Python are reusable blocks of code defined with the
defkeyword. Calling a function means invoking its code by name with parentheses:print_flag(). Omitting the parentheses references the function object without calling it - a common mistake that produces no error but also does nothing useful.The bug in this script is that the
bbranch contains aprint()statement (or calls some other function) instead ofprint_flag(). This might have been an intentional challenge design - simulating the kind of copy-paste error or incomplete implementation that happens in real codebases.When fixing bugs in unfamiliar code, the safest approach is to make the smallest possible change that corrects the behavior - in this case, a single line replacement. Larger refactors risk introducing new bugs or changing behavior in unintended ways.
Step 3Run the fixed script
ObservationWith the incorrect call replaced by print_flag(), re-running serpentine.py and choosing option 'b' should invoke the right function and print the flag.Execute the fixed script and press 'b' at the menu. print_flag() is called and the flag is printed.pythonpython3 serpentine.pyExpected output
picoCTF{...}Learn more
Verifying the fix by running the script confirms the entire chain works: the menu is displayed, option 'b' is accepted, the correct branch is executed,
print_flag()is called, and the flag appears. This end-to-end verification is essential - a fix that eliminates the error message but fails to produce the flag has not actually solved the problem.The challenge name "serpentine" is a reference to Python (whose logo is a snake). The word also implies winding, twisting paths - mirroring the indirect route to the flag caused by the misdirected function call. Many picoCTF challenge names are puns or thematic references worth noting.
The broader skill here is code modification: reading existing code, understanding its intent, identifying where it deviates from that intent, and making a targeted correction. This is the daily work of software debugging and is directly applicable to reverse engineering challenges where you modify or patch programs to change their behavior.
Interactive tools
- Strings ExtractorPull printable text from any binary, library, or image. ASCII and UTF-16 detection, configurable minimum length, flag-like highlight, no command line needed.
- Hex ViewerView text or raw hex bytes as a xxd-style hex dump with byte offset, hex columns, and ASCII sidebar. Highlights printable characters and null bytes.
Flag
Reveal flag
picoCTF{7h3_r04d_l355_7r4v3l3d_...}
The fix is a one-line edit - understanding what a function does versus what the code currently calls is the core skill tested here.