Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
amatya /
quiz1 /
node_modules /
whatwg-url /
dist /
[ HOME SHELL ]
Name
Size
Permission
Action
Function.js
1.22
KB
-rw-rw-rw-
URL-impl.js
4.47
KB
-rw-rw-rw-
URL.js
12.58
KB
-rw-rw-rw-
URLSearchParams-impl.js
2.63
KB
-rw-rw-rw-
URLSearchParams.js
14.8
KB
-rw-rw-rw-
VoidFunction.js
833
B
-rw-rw-rw-
encoding.js
632
B
-rw-rw-rw-
infra.js
518
B
-rw-rw-rw-
percent-encoding.js
4.82
KB
-rw-rw-rw-
url-state-machine.js
29.42
KB
-rw-rw-rw-
urlencoded.js
2.64
KB
-rw-rw-rw-
utils.js
3.71
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : encoding.js
"use strict"; let { TextEncoder, TextDecoder } = require("util"); // Handle browserify's lack of support (https://github.com/browserify/node-util/issues/46), which // is important for the live viewer: if (!TextEncoder) { TextEncoder = global.TextEncoder; } if (!TextDecoder) { TextDecoder = global.TextDecoder; } const utf8Encoder = new TextEncoder(); const utf8Decoder = new TextDecoder("utf-8", { ignoreBOM: true }); function utf8Encode(string) { return utf8Encoder.encode(string); } function utf8DecodeWithoutBOM(bytes) { return utf8Decoder.decode(bytes); } module.exports = { utf8Encode, utf8DecodeWithoutBOM };
Close