crasher/crasher.html

14 lines
273 B
HTML
Raw Normal View History

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