> For the complete documentation index, see [llms.txt](https://alham-rizvi.gitbook.io/alhamrizvi/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://alham-rizvi.gitbook.io/alhamrizvi/picoctf-writeups/picoctf/general-skills/serpentine.md).

# serpentine

yo chads, welcome back. this one is a fun and simple python reversing challenge.

when we run the script, we get a menu with three options. choosing option **b (Print flag)** just throws a message saying the function is “missing” and tells us to check the source code. classic bait.

so instead of interacting with the program, we open the source file and start reading it.

looking through the code, we quickly find a function called `print_flag()` which is clearly not missing at all. inside it, we see this:

```python
flag = str_xor(flag_enc, 'enkidu')
```

so the flag is stored in an encoded form (`flag_enc`) and then decoded using a custom XOR function with the key `"enkidu"`.

the `str_xor` function simply repeats the key until it matches the length of the encrypted string and then XORs each character. nothing fancy.

at this point, there are two ways to solve it: either manually reverse the XOR, or just call the function directly.

since this is python, we take the easy route and execute:

```bash
python3 -c "from serpentine import print_flag; print_flag()"
```

this bypasses the menu entirely and directly runs the hidden function.

and we get the flag:

```
picoCTF{7h3_r04d_l355_7r4v3l3d_aa2340b2}
```

in the end, the challenge is just about not trusting the program flow and actually reading the source. the flag was never missing — it was just hidden behind a fake menu option.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://alham-rizvi.gitbook.io/alhamrizvi/picoctf-writeups/picoctf/general-skills/serpentine.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
