RCTF
2026-08-22 20:05:38

Misc Signin

尝试用停止时间的脚本

1
2
3
clearInterval(timerInterval);
timeLeft = 999;
document.getElementById('timer').textContent = timeLeft + 's';

但是当我慢慢悠悠涂完还是没有flag><

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
fetch('/?score=100', {
method: 'GET'
})
.then(response => response.text())
.then(html => {
const parser = new DOMParser();
const doc = parser.parseFromString(html, 'text/html');
const bodyText = doc.body.innerText;

const flagPatterns = [
/ROIS\{[^}]+\}/,
/flag[:=]\s*([^\s]+)/i,
/CTF\{[^}]+\}/,
/[\w]{10,50}/
];

flagPatterns.forEach(pattern => {
const match = bodyText.match(pattern);
if (match) console.log('可能的flag:', match[0]);
});
});

Misc Shadows of Asgard

上一页
2026-08-22 20:05:38
下一页