I’m going to do a Natas challenge so I can learn web-related learning at OverTheWire, which is famous for its perpetual CTF. Natas logs in to the specified URL with the given user and password and searches for the password for the next challenge from the suggestions on the page after logging in.
So, let’s begin!
1
2
3
Username: natas0
Password: natas0
URL: http://natas0.natas.labs.overthewire.org
Logged in, the level hint will appear in the middle of the screen
This level is pretty simple, just Right Click > View Page Source or Query with Curl as follow
1
curl -i -X GET -u natas0:natas0 http://natas0.natas.labs.overthewire.org
==> Result <==
1
2
3
4
5
6
7
8
<body>
<h1>natas0</h1>
<div id="content">
You can find the password for the next level on this page.
<!--The password for natas1 is g9D9cREhslqBKtcA2uocGHPfMZVzeFK6 -->
</div>
</body>
==> CTF: { natas1:g9D9cREhslqBKtcA2uocGHPfMZVzeFK6
}
Comments powered by Disqus.