-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
80 lines (74 loc) · 2.83 KB
/
Copy pathindex.html
File metadata and controls
80 lines (74 loc) · 2.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>codestube's PUCTF Writeup</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<link rel="stylesheet" href="indexStyles.css">
</head>
<body>
<div class="container">
<!-- Navigation button -->
<div class="nav-button">
<a href="index.html" class="btn">Home</a>
</div>
<!-- Header -->
<div class="header">
<h1 class="title">Welcome</h1>
<div class="rating">
<!-- Font Awesome stars: fas = solid, far = regular -->
<!-- <i class="fas fa-star"></i> -->
<i class="fas fa-star-half-alt"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
<i class="far fa-star"></i>
<span class="score"> 0.5 / 10 </span>
</div>
</div>
<div class="meta">
Author: NuttyShell | Category: Welcome
</div>
<!-- Challenge Description -->
<div class="description">
<h2>Description</h2>
<p>Welcome to participate in PolyU x NuttyShell Cybersecurity CTF 2025!</p>
</div>
<!-- Included Files -->
<div class="files">
<h2>Files</h2>
<ul>
<!-- <li><a href="#">filename.ext</a></li> -->
<li>No files were attached.</li>
</ul>
</div>
<!-- Flag Format -->
<div class="flag-format">
<h2>Flag Format</h2>
<p>PUCTF25{[\x00-\x7F]*}</p>
</div>
<!-- Writeup Section -->
<div class="content">
<h2>My Writeup</h2>
<p>
<!-- My thought process -->
Welcome to my first writeup!<br>
This is my first time writeup, so I'll just use my first flag as the writeup.<br>
The flag was hidden in the Discord server, in the <b>#welcome</b> channel.<br>
This was the flag: <b>PUCTF25{w3lc0m3_4nd_3nj0y_this_g4m3}</b><br>
And that wraps up my first writeup! Hopefully there's more to come!
</p>
</div>
<!-- Footer Buttons -->
<div class="footer-buttons">
<a href="#top" class="btn">Top</a>
<a href="index.html" class="btn">Home</a>
</div>
<div class="thoughts">
I wish there was a time machine to send me back to the CTF, so that I can redo all my mistakes.<br>
Maybe if there was a time machine this writeup of mine would be more professional and enhanced.
</div>
</div>
</body>
</html>