-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
202 lines (174 loc) · 5.3 KB
/
Copy pathindex.html
File metadata and controls
202 lines (174 loc) · 5.3 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>My Writeup</title>
<link href="style.css" rel="stylesheet" />
</head>
<body>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: "Segoe UI", sans-serif;
background-color: #f4f4f9;
color: #333;
transition: background 0.3s, color 0.3s;
padding: 1rem;
}
body.dark {
background-color: #121212;
color: #e0e0e0;
}
body.dark .card {
background-color: #1e1e1e;
color: #e0e0e0;
box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}
body.dark footer {
color: #aaa;
}
.theme-toggle {
position: fixed;
top: 1rem;
right: 1rem;
font-size: 1.5rem;
cursor: pointer;
z-index: 1000;
user-select: none;
}
header {
text-align: center;
padding: 2rem 0;
}
header h1 {
font-size: 2.5rem;
margin-bottom: 0.5rem;
}
header p {
font-size: 1.2rem;
color: inherit;
}
.card-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
max-width: 1000px;
margin: 0 auto;
padding: 2rem 0;
}
.card {
background-color: white;
padding: 1.5rem;
border-radius: 12px;
text-decoration: none;
color: inherit;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s;
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}
.card h2 {
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.card p {
font-size: 1rem;
color: inherit;
}
footer {
text-align: center;
padding: 1rem;
font-size: 0.9rem;
color: #888;
}
</style>
<div class="theme-toggle" id="themeToggle" title="Toggle Dark Mode">🌙</div>
<header>
<h1>Welcome to My Cloud-Goat WriteUps</h1>
<p>Select a Scenario for Writeup</p>
</header>
<main class="card-container">
<a
class="card"
href="writeup.html?url=https://exido-rio.notion.site/ebd/1fed83dfa89f80c29547ed61ee682085"
target="_self"
>
<h2>IAM Privesc Key Rotation</h2>
<p>Escalation the privilege by key Rotation</p>
</a>
<a
class="card"
href="writeup.html?url=https://exido-rio.notion.site/ebd/1fdd83dfa89f80549083f1c0ae46970a"
target="_self"
>
<h2>SNS SECRET</h2>
<p>Exploiting the misconfiguration in AWS SNS</p>
</a>
<a
class="card"
href="writeup.html?url=https://exido-rio.notion.site/ebd/1fcd83dfa89f801997b0c49396ec1bea"
target="_self"
>
<h2>ELASTIC BEANSTALK</h2>
<p>Leaking Beanstalk and Access Key Creation</p>
</a>
<a
class="card"
href="writeup.html?url=https://exido-rio.notion.site/ebd/1ffd83dfa89f80dbb6b0cc878f35500d"
target="_self"
>
<h2>POLICY ROLLBACK</h2>
<p>Escalation to admin privilege by changing the more permissive policy version </p>
</a>
<a
class="card"
href="writeup.html?url=https://exido-rio.notion.site/ebd/1ffd83dfa89f80688fa7c71b55d879c8"
target="_self"
>
<h2>LAMBDA ESCALTION </h2>
<p>Escalation to admin privilege by passing a high privilage role to lambda and then attach admin policy to our low privilage user </p>
</a>
<a
class="card"
href="writeup.html?url=https://exido-rio.notion.site/ebd/226d83dfa89f8051a2dcf11deb519d59"
target="_self"
>
<h2> SQS FLAG SHOP </h2>
<p> Abusing Invalidation and directly interact with the SQS queue and bypassing the frontend restrictions </p>
</a>
<a
class="card"
href="writeup.html?url=https://exido-rio.notion.site/ebd/226d83dfa89f802aa12be7a68567a52e"
target="_self"
>
<h2> Vulnerable Cognito </h2>
<p> Abusing missconfiguration in AWS Cognito Pool </p>
</a>
</main>
<footer>
<p>© 2025 Exido Rio. All rights reserved.</p>
</footer>
<!-- JavaScript for Theme Toggle -->
<script>
const toggleBtn = document.getElementById("themeToggle");
const userPref = localStorage.getItem("theme");
if (userPref === "dark") {
document.body.classList.add("dark");
toggleBtn.textContent = "☀️";
}
toggleBtn.addEventListener("click", () => {
document.body.classList.toggle("dark");
const isDark = document.body.classList.contains("dark");
toggleBtn.textContent = isDark ? "☀️" : "🌙";
localStorage.setItem("theme", isDark ? "dark" : "light");
});
</script>
</body>
</html>