Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.171
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
@webassemblyjs /
leb128 /
esm /
[ HOME SHELL ]
Name
Size
Permission
Action
bits.js
3.45
KB
-rw-r--r--
bufs.js
4.54
KB
-rw-r--r--
index.js
932
B
-rw-r--r--
leb.js
7.45
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
import leb from "./leb"; /** * According to https://webassembly.github.io/spec/core/binary/values.html#binary-int * max = ceil(32/7) */ export var MAX_NUMBER_OF_BYTE_U32 = 5; /** * According to https://webassembly.github.io/spec/core/binary/values.html#binary-int * max = ceil(64/7) */ export var MAX_NUMBER_OF_BYTE_U64 = 10; export function decodeInt64(encodedBuffer, index) { return leb.decodeInt64(encodedBuffer, index); } export function decodeUInt64(encodedBuffer, index) { return leb.decodeUInt64(encodedBuffer, index); } export function decodeInt32(encodedBuffer, index) { return leb.decodeInt32(encodedBuffer, index); } export function decodeUInt32(encodedBuffer, index) { return leb.decodeUInt32(encodedBuffer, index); } export function encodeU32(v) { return leb.encodeUInt32(v); } export function encodeI32(v) { return leb.encodeInt32(v); } export function encodeI64(v) { return leb.encodeInt64(v); }
Close