Skip to content

Commit 4d98204

Browse files
committed
add natas0 and fix 1337up writeup
1 parent f11cd0f commit 4d98204

File tree

3 files changed

+53
-1
lines changed

3 files changed

+53
-1
lines changed

_posts/2024-11-17-1337up-live-2024-private-github-repository.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,4 @@ Another repository! Ugh this is getting kind tedious, but nevertheless, lets clo
9494

9595
Finally! We've found the flag, but we should clean up first. All we'll need to do is run `ssh-add -d is_rsa` to remove that key, because we don't need it anymore, and we're all good! Hopefully you learned a thing or two about git and GitHub on your way here.
9696

97-
FLAG: INTIGRITI{9e0121bb8bce15ead3d7f529a81b77b4}
97+
FLAG: `INTIGRITI{9e0121bb8bce15ead3d7f529a81b77b4}`
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
---
2+
title: natas0
3+
date: 2025-07-13
4+
categories: [Capture The Flags, OverTheWire]
5+
tags: [ctf, overthewire, natas, writeups]
6+
description: OverTheWire natas0 Challenge
7+
---
8+
9+
10+
> Challenge description:
11+
>
12+
>
13+
http://natas0.natas.labs.overthewire.org
14+
{: .prompt-info }
15+
16+
Okay, so let's load up the site!
17+
18+
![the landing page](/assets/img/overthewire/natas0-0.png)
19+
20+
Hm, well I don't see it on the page, so let's look at the `html` that makes up the site.
21+
22+
```html
23+
<html>
24+
25+
<head>
26+
<!-- This stuff in the header has nothing to do with the level -->
27+
<link rel="stylesheet" type="text/css" href="http://natas.labs.overthewire.org/css/level.css">
28+
<link rel="stylesheet" href="http://natas.labs.overthewire.org/css/jquery-ui.css" />
29+
<link rel="stylesheet" href="http://natas.labs.overthewire.org/css/wechall.css" />
30+
<script src="http://natas.labs.overthewire.org/js/jquery-1.9.1.js"></script>
31+
<script src="http://natas.labs.overthewire.org/js/jquery-ui.js"></script>
32+
<script src=http://natas.labs.overthewire.org/js/wechall-data.js></script>
33+
<script src="http://natas.labs.overthewire.org/js/wechall.js"></script>
34+
<script>
35+
var wechallinfo = { "level": "natas0", "pass": "natas0" };
36+
</script>
37+
</head>
38+
39+
<body>
40+
<h1>natas0</h1>
41+
<div id="content">
42+
You can find the password for the next level on this page.
43+
44+
<!--The password for natas1 is {hidden in accordance with game rules} -->
45+
</div>
46+
</body>
47+
48+
</html>
49+
```
50+
51+
And look at that, the password was in a comment on the source code, which is a real problem you'll find in the world.
52+
12.5 KB
Loading

0 commit comments

Comments
 (0)