OXIESEC PANEL
- Current Dir:
/
/
opt
/
golang
/
1.22.0
/
misc
/
wasm
Server IP: 191.96.63.230
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/02/2024 06:09:55 PM
rwxr-xr-x
📄
go_js_wasm_exec
603 bytes
02/02/2024 06:09:55 PM
rwxr-xr-x
📄
go_wasip1_wasm_exec
1.31 KB
02/02/2024 06:09:55 PM
rwxr-xr-x
📄
wasm_exec.html
1.27 KB
02/02/2024 06:09:55 PM
rw-r--r--
📄
wasm_exec.js
16.3 KB
02/02/2024 06:09:55 PM
rw-r--r--
📄
wasm_exec_node.js
1.12 KB
02/02/2024 06:09:55 PM
rw-r--r--
Editing: go_js_wasm_exec
Close
#!/usr/bin/env bash # Copyright 2018 The Go Authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. SOURCE="${BASH_SOURCE[0]}" while [ -h "$SOURCE" ]; do DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" SOURCE="$(readlink "$SOURCE")" [[ $SOURCE != /* ]] && SOURCE="$DIR/$SOURCE" done DIR="$( cd -P "$( dirname "$SOURCE" )" && pwd )" # Increase the V8 stack size from the default of 984K # to 8192K to ensure all tests can pass without hitting # stack size limits. exec node --stack-size=8192 "$DIR/wasm_exec_node.js" "$@"