-
Notifications
You must be signed in to change notification settings - Fork 0
/
wasm_hack.html
42 lines (37 loc) · 1.73 KB
/
wasm_hack.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
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
</head>
<body>
<p>
Разведчик Екатерина добыла секретный wasm модуль, который использовался во вражеской системе обороны.
Модуль раньше был подключен к ядерным турелям, но теперь он просто сам по себе, а вот секретный шифр все еще остается в нем.
К сожалению, Екатерина не умеет программировать так что командование поручило Вам разобрать этот модуль и достать из него нужный шифр.
</p>
<div style="text-align:center;">
<label for="name">Enter your guess:</label>
<input type="text" id="passwd" name="name">
<button onclick="CheckPassword()">Check</button>
</div>
<script>
const inputElement = document.getElementById("passwd");
function CheckPassword() {
initializeWasm().then(main);
}
async function initializeWasm() {
const fetchPromise = fetch("interesting.wasm");
const { instance } = await WebAssembly.instantiateStreaming(fetchPromise);
return instance;
}
function main(instance) {
let userPassword = parseInt(inputElement.value, 10);
if (instance.exports.check(userPassword) == 1) {
alert("Good job!");
} else {
alert("Ah, don't waste my time!");
}
}
</script>
</body>
</html>