# Day 14 - Unknown Storage

**Date:** 28, May, 2021

**Author:** Dhilip Sanjay S

***

### What is the name of the file you found?

* **Answer:** employee\_names.txt
* **Steps to Reproduce:**
  * Visit `https://advent-bucket-one.s3.amazonaws.com/` in browser.
  * You'll get the following **XML response**.

```xml
<ListBucketResult>
<Name>advent-bucket-one</Name>
<Prefix/>
<Marker/>
<MaxKeys>1000</MaxKeys>
<IsTruncated>false</IsTruncated>
<Contents>
<Key>employee_names.txt</Key>
<LastModified>2019-12-14T15:53:25.000Z</LastModified>
<ETag>"e8d2d18588378e0ee0b27fa1b125ad58"</ETag>
<Size>7</Size>
<StorageClass>STANDARD</StorageClass>
</Contents>
<Contents>
<Key>test.txt</Key>
<LastModified>2021-04-02T18:21:13.000Z</LastModified>
<ETag>"098f6bcd4621d373cade4e832627b4f6"</ETag>
<Size>4</Size>
<Owner>
<ID>65a011a29cdf8ec533ec3d1ccaae921c</ID>
</Owner>
<StorageClass>STANDARD</StorageClass>
</Contents>
</ListBucketResult>
```

{% hint style="info" %}
Once we have an s3 bucket, we can check if it’s publicly accessible by browsing to the URL. The format of the URL is: `bucketname.s3.amazonaws.com`
{% endhint %}

***

### What is in the file?

* **Answer:** mrchef
* **Steps to Reproduce:** Visit `https://advent-bucket-one.s3.amazonaws.com/employee_names.txt` in browser.

***


---

# 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://blog.dhilipsanjay.in/ctfs/tryhackme/tryhackme/adventofcyber1/day14-unknownstorage.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.
