Over the Wire/natas

[Natas] OverTheWire : Natas level 0

ruming 2021. 3. 28. 15:27

 

[level 0]

ID : natas0

PW : natas0

URL : http://natas0.natas.labs.overthewire.org

아이디와 비밀번호를 입력하니 다음과 같은 문구가 떴다.

페이지에서 다음 스테이지로 가는 비밀번호를 찾으면 되는 것 같다.

일단 페이지 소스코드부터 확인해봤다.

<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 gtVrDuiDfck831PqWsLEZy5gyDz1clto -->
</div>
</body>
</html>

아래부분에 주석으로 natas1의 비밀번호가 적혀있었다. 

 

gtVrDuiDfck831PqWsLEZy5gyDz1clto

 

'Over the Wire > natas' 카테고리의 다른 글

[natas] level 4 → 5  (0) 2021.04.04
[natas] level 3 → 4  (0) 2021.04.02
[natas] OverTheWire : level 2 → 3  (0) 2021.04.02
[Natas] OverTheWire : Natas level 1 → 2  (0) 2021.03.28
[Natas] OverTheWire : Natas level 0 → 1  (0) 2021.03.28