-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfriendly-sage.html
101 lines (88 loc) · 4.17 KB
/
friendly-sage.html
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sage Bot Challenge | HashVault</title>
<link rel="favicon" href="favicon.ico" type="image/x-icon">
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" rel="stylesheet">
<style>
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=VT323&display=swap');
body {
font-family: 'Orbitron', sans-serif;
background-color: #111111;
color: #e0e0e0;
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
flex-direction: column;
}
.terminal-text {
font-family: 'VT323', monospace;
color: #f6c916;
}
.challenge-container {
max-width: 1000px;
margin: 0 auto;
padding: 20px;
}
.challenge-card {
background-color: rgba(31, 41, 55, 0.8);
border-radius: 16px;
border: 1px solid #f6c916;
padding: 30px;
backdrop-filter: blur(10px);
}
.glitch-text {
animation: glitch 1s infinite;
}
@keyframes glitch {
2%, 64% { transform: translate(2px, 0) skew(0deg); }
4%, 60% { transform: translate(-2px, 0) skew(0deg); }
62% { transform: translate(0, 0) skew(5deg); }
}
</style>
</head>
<body class="bg-black">
<div class="container mx-auto px-4 py-10">
<div class="text-center mb-10">
<h1 class="text-3xl sm:text-4xl font-bold text-white glitch-text">
Sage <span class="text-yellow-400">Bot</span> Challenge
</h1>
<p class="mt-4 text-gray-300">Decode the Discord Challenge</p>
</div>
<div class="challenge-container">
<div class="challenge-card">
<h2 class="text-2xl font-bold text-yellow-400 mb-6">Challenge Description</h2>
<p class="mt-4 text-gray-300">Join our Discord server and interact with the Sage Bot. Use the <span class="text-green-400">.flag</span> command to retrieve the hidden flag. Your wit and communication skills will be tested!</p>
<div class="mt-6">
<a href="https://discord.gg/3YXya6dgxq" target="_blank">
<button class="text-white bg-yellow-700 hover:bg-yellow-600 px-6 py-3 rounded-md transition duration-300 flex items-center justify-center">
<i class="fab fa-discord mr-2"></i> Join Discord Server
</button>
</a>
</div>
<div class="challenge-input mb-6 mt-10">
<div style="background-color: #1a202c; border: 1px solid #4a5568; color: #e0e0e0; padding: 16px; border-radius: 8px; margin-top: 10px;">
<span style="font-weight: bold; color: #f6c916; display: block; margin-bottom: 8px;">Challenge Instructions:</span>
<ol class="list-decimal list-inside text-gray-300">
<li>Join the HashVault Discord server</li>
<li>Find the Sage Bot in the server members section and DM it</li>
<li>Use the <span class="text-green-400">.flag</span> command</li>
<li>Enjoy the flag 🚩</li>
</ol>
</div>
<div class="challenge-input mb-6 mt-10">
<div style="background-color: #1a202c; border: 1px solid #4a5568; color: #e0e0e0; padding: 16px; border-radius: 8px; margin-top: 10px;">
<span style="font-weight: bold; color: #48bb78; display: block; margin-bottom: 8px;">Flag Format:</span>
<span>HVFLAG{TH1S_IS_4_FL4G}</span>
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>