crasher/crasher.html

15 lines
291 B
HTML
Raw Permalink Normal View History

2024-12-09 00:46:49 +00:00
<!DOCTYPE html>
<html>
<head>pwnd</head>
<body>
2024-12-09 00:50:20 +00:00
<script>
2024-12-09 00:46:49 +00:00
fetch("crasher.wasm")
.then((response) => response.arrayBuffer())
.then((bytes) => WebAssembly.instantiate(bytes, importObject))
.then((results) => {
results.instance.exports.exported_func();
});
2024-12-09 00:50:20 +00:00
</script>
2024-12-09 00:46:49 +00:00
</body>
</html>