Previous Level Guide: Natas Level 1 → 2
Access
Username: natas3
Password: ttQTW9h4DCaw8myewTz0wHnpFGm78DjY
URL: http://natas3.natas.labs.overthewire.org
Info
Description: No description, get inside the level to know.
Theory
Not much to do with the details from the task, so just skipping to doing it.
Solution
We enter to the url with the password from last level:

Yeah no, last time you told me the same thing, but there was something there. So let's go check View Source on Ctrl+U, just in case there is something, even though they've been telling us there's not but there actually is:

And yeah, you are referring to `robots.txt` there. It is a file that's used to control traffic in your website, like which bots can access what, and all that. And because they mentioned the crawler of Google "not finding this", it's pretty obvious they are pointing at `robots.txt`. So let's go over there and see if they give us something:
http://natas3.natas.labs.overthewire.org/robots.txt
User-agent: * Disallow: /s3cr3t/
Yup, that just links us to another page, in the folder called s3cr3t, ohh so ominous! So let's go to that folder in the level's domain:
http://natas3.natas.labs.overthewire.org/s3cr3t/

And the `users.txt` file is back, let's enter over there and see if we get the password:
natas4:dBbzfpIIuBWMyB051PIidHgaGfNeSeUP
And that's our password! Now you can exit and go to the next level.
https://overthewire.org/wargames/natas/natas3.htmlNext Level Guide: Natas Level 3 → Level 4