> For the complete documentation index, see [llms.txt](https://cybertuna.gitbook.io/underthewire/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://cybertuna.gitbook.io/underthewire/century/century-5-greater-than-10.md).

# Century 5 -> 10

## Century 5 -> 6

The password for Century6 is the short name of the domain in which this system resides in **PLUS** the name of the file on the desktop:

{% code title="Cleaner output" %}

```
Get-ADDomain | select Name; echo "`nFilename`n----"; dir
```

{% endcode %}

```
Password: underthewire3347
```

## Century 6 -> 7

The password for Century7 is the number of folders on the desktop.

```
Get-ChildItem -Directory | Measure-Object
```

```
Password: 197
```

## Century 7 -> 8

The password for Century8 is in a readme file somewhere within the contacts, desktop, documents, downloads, favorites, music, or videos folder in the user’s profile.

```
List Recursively: dir -Recurse
Read File: type C:\users\century7\Downloads\Readme.txt
```

```
Password: 7points
```

## Century 8 -> 9

The password for Century9 is the number of unique entries within the file on the desktop.

```
type unique.txt | Get-Unique | Measure-Object
```

```
Password: 696
```

## Century 9 -> 10

&#x20;The password for Century10 is the **161st** word within the file on the desktop.

```
Split with whitespace delimiter, save it in a variable and echo 161th word:
$word = (Get-Content .\Word_File.txt) -split ' ' ; $word[160]
```

```
Password: pierid
```

{% hint style="warning" %}
Need to look for a better way
{% endhint %}


---

# 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://cybertuna.gitbook.io/underthewire/century/century-5-greater-than-10.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.
