Overthewire Natas Level 0
Solution for the Overthewire.org Natas level 0
Description
Username: natas0
Password: natas0
URL: natas0.natas.labs.overthewire.org
Walkthrough
Visit the url http://natas0.natas.labs.overthewire.org
in the browser and we get a prompt for login.
Use the username natas0
and password natas0
to login and begin the challenge.
Since there is nothing to see on the site the next place to look is in the source code.
Right click on the webpage and click on view page source
.
The password for natas1 is hidden as a comment in the source code of the page.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<html>
<head>
<!-- This stuff in the header has nothing to do with the level -->
<link rel="stylesheet" type="text/css" href="http://natas.labs.overthewire.org/css/level.css">
<link rel="stylesheet" href="http://natas.labs.overthewire.org/css/jquery-ui.css" />
<link rel="stylesheet" href="http://natas.labs.overthewire.org/css/wechall.css" />
<script src="http://natas.labs.overthewire.org/js/jquery-1.9.1.js"></script>
<script src="http://natas.labs.overthewire.org/js/jquery-ui.js"></script>
<script src=http://natas.labs.overthewire.org/js/wechall-data.js></script><script src="http://natas.labs.overthewire.org/js/wechall.js"></script>
<script>var wechallinfo = { "level": "natas0", "pass": "natas0" };</script></head>
<body>
<h1>natas0</h1>
<div id="content">
You can find the password for the next level on this page.
<!--The password for natas1 is gtVrDu************************** -->
</div>
</body>
</html>
The password for natas1
1
The password for natas1 is gtVrDu**************************
This post is licensed under CC BY 4.0 by the author.