# Titanic

The first step is to get a list of all the words from the titanic:

```bash
curl http://www.dailyscript.com/scripts/Titanic.txt | tr '[:space:]' '\n' | sed  '/^$/d' | | tr -d '.' | tr -d ',' | tr '[:upper:]' '[:lower:]' > wl
```

Now we create a new wordlist in flag format:

```bash
for i in $(cat wl); do echo "tjctf{$i}" >> wl2; done
```

Then we can use the password cracking tool john to get the flag.

```bash
john -w=wl3 hash --format=raw-md5
```

## The flag is tjctf{ismay's}


---

# Agent Instructions: 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:

```
GET https://the-winrars.gitbook.io/writeups/2020-writeups/tjctf/crypto/titanic.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
