forked from haoching/CIRDDCTF
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
293 lines (254 loc) · 8.59 KB
/
Copy pathindex.html
File metadata and controls
293 lines (254 loc) · 8.59 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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="DDCIRC.png">
<title>電研數創一家親</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/4.0.0/core.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/crypto-js/3.1.9-1/md5.js"></script>
</head>
<body>
<div class="container">
<img id="icon" src="DDCIRC.png" />
<p id="q"></p>
<p id="ans1"></p>
<p id="ans2"></p>
<p id="ans3"></p>
<p id="ans4"></p>
<p id="ans5"></p>
<div class="wrap">
<button id="ans1Button" class="copybutton">A</button>
<button id="ans2Button" class="copybutton">B</button>
<button id="ans3Button" class="copybutton">C</button>
<button id="ans4Button" class="copybutton">D</button>
<button id="ans5Button" class="copybutton">E</button>
</div>
</div>
<style>
p {
display: block;
}
body {
margin: 0;
padding: 0;
}
.container {
height: 100vh;
width: 100vw;
display: flex;
flex-flow: column-reverse;
justify-content: space-around;
align-items: center;
background-color: rgb(50, 237, 203);
flex-direction: column;
}
.container>* {
margin: -20px;
}
.copybutton {
background-color: #ffb6dc;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: none;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 12px;
box-shadow: 0 9px #999;
}
.copybutton:hover {
background-color: #ffbcfc;
}
.copybutton:active {
background-color: #ffb6dc;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
#q {
width: 100vw;
text-align: center;
font-size: 150%;
font-family: 'Courier New', Courier, monospace;
font-weight: bolder;
color: white;
margin-top: -4vh;
}
#ans1 {
width: 100vw;
text-align: center;
font-size: 150%;
font-family: 'Courier New', Courier, monospace;
font-weight: bolder;
color: white;
margin-top: -4vh;
}
#ans2 {
width: 100vw;
text-align: center;
font-size: 150%;
font-family: 'Courier New', Courier, monospace;
font-weight: bolder;
color: white;
margin-top: -4vh;
}
#ans3 {
width: 100vw;
text-align: center;
font-size: 150%;
font-family: 'Courier New', Courier, monospace;
font-weight: bolder;
color: white;
margin-top: -4vh;
}
#ans4 {
width: 100vw;
text-align: center;
font-size: 150%;
font-family: 'Courier New', Courier, monospace;
font-weight: bolder;
color: white;
margin-top: -4vh;
}
#ans5 {
width: 100vw;
text-align: center;
font-size: 150%;
font-family: 'Courier New', Courier, monospace;
font-weight: bolder;
color: white;
margin-top: -4vh;
}
#icon {
height: 25%;
}
</style>
<script>
var hintText = `
恭喜奪旗
把旗子複製之後回報到discordㄅ
`
String.prototype.escape = function () {
var tagsToReplace = {
'&': '&',
'<': '<',
'>': '>'
};
return this.replace(/[&<>]/g, function (tag) {
return tagsToReplace[tag] || tag;
});
};
const queryString = window.location.search;
const urlParams = new URLSearchParams(queryString);
if( urlParams.has('ans1')) {
const ans1Display = document.getElementById('ans1Button')
ans1Display.style.display = 'inline-block';
}
if( urlParams.has('ans2')) {
const ans2Display = document.getElementById('ans2Button')
ans2Display.style.display = 'inline-block';
}
if( urlParams.has('ans3')) {
const ans3Display = document.getElementById('ans3Button')
ans3Display.style.display = 'inline-block';
}
if( urlParams.has('ans4')) {
const ans4Display = document.getElementById('ans4Button')
ans4Display.style.display = 'inline-block';
}
if( urlParams.has('ans5')) {
const ans5Display = document.getElementById('ans5Button')
ans5Display.style.display = 'inline-block';
}
const q = urlParams.get('q')
const ans1 = urlParams.get('ans1')
const ans2 = urlParams.get('ans2')
const ans3 = urlParams.get('ans3')
const ans4 = urlParams.get('ans4')
const ans5 = urlParams.get('ans5')
if (q !== null) {
document.getElementById('q').innerHTML = q.escape();
}
if (ans1 !== null) {
document.getElementById('ans1').innerHTML = ans1.escape();
}
if (ans2 !== null) {
document.getElementById('ans2').innerHTML = ans2.escape();
}
if (ans3 !== null) {
document.getElementById('ans3').innerHTML = ans3.escape();
}
if (ans4 !== null) {
document.getElementById('ans4').innerHTML = ans4.escape();
}
if (ans5 !== null) {
document.getElementById('ans5').innerHTML = ans5.escape();
}
String.prototype.hashCode = function () {
var hash = 0,
i, chr;
if (this.length === 0) return hash;
for (i = 0; i < this.length; i++) {
chr = this.charCodeAt(i);
hash = ((hash << 5) - hash) + chr;
hash |= 0; // Convert to 32bit integer
}
return hash;
}
const ans1Button = document.getElementById('ans1Button');
ans1Button.addEventListener('click', function () {
navigator.clipboard.writeText("DDCIRC{"+CryptoJS.MD5(ans1)+"}")
.then(() => {
console.log('已複製到剪貼簿')
})
.catch(err => {
console.error('複製失敗:', err)
})
});
const ans2Button = document.getElementById('ans2Button');
ans2Button.addEventListener('click', function () {
navigator.clipboard.writeText("DDCIRC{"+CryptoJS.MD5(ans2)+"}")
.then(() => {
console.log('已複製到剪貼簿')
})
.catch(err => {
console.error('複製失敗:', err)
})
});
const ans3Button = document.getElementById('ans3Button');
ans3Button.addEventListener('click', function () {
navigator.clipboard.writeText("DDCIRC{"+CryptoJS.MD5(ans3)+"}")
.then(() => {
console.log('已複製到剪貼簿')
})
.catch(err => {
console.error('複製失敗:', err)
})
});
const ans4Button = document.getElementById('ans4Button');
ans4Button.addEventListener('click', function () {
navigator.clipboard.writeText("DDCIRC{"+CryptoJS.MD5(ans4)+"}")
.then(() => {
console.log('已複製到剪貼簿')
})
.catch(err => {
console.error('複製失敗:', err)
})
});
const ans5Button = document.getElementById('ans5Button');
ans5Button.addEventListener('click', function () {
navigator.clipboard.writeText("DDCIRC{"+CryptoJS.MD5(ans5)+"}")
.then(() => {
console.log('已複製到剪貼簿')
})
.catch(err => {
console.error('複製失敗:', err)
})
});
</script>
</body>
</html>