Skip to main content

Overview

The page says: “There is nothing on this page.” There are no HTML comments this time. But “nothing on this page” doesn’t mean the server has nothing to offer — it means the visible content is empty. Start by examining what resources the page is actually loading.

Hints

View the page source. Even though the page appears blank, it still loads assets. Is anything referenced that lives in a subdirectory on the server?
The source loads files/pixel.png. The /files/ directory exists on the server. Many web servers are configured to show a listing of all files in a directory when no index.html is present. Try navigating directly to /files/ — you might see more than just pixel.png.

Solution

1

Inspect the page source

View source. The page body contains:
This reveals the existence of a /files/ directory.
2

Browse to the directory

Navigate to http://natas2.natas.labs.overthewire.org/files/.Apache directory listing is enabled, showing two files:
  • pixel.png — a 1×1 placeholder image
  • users.txt — a credentials file
3

Read users.txt

Open users.txt:

With curl

Password