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.1
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
/
var /
www /
html /
quiz1 /
node_modules /
htmlparser2 /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
CollectingHandler.d.ts
356
B
-rw-rw-rw-
CollectingHandler.d.ts.map
414
B
-rw-rw-rw-
CollectingHandler.js
2.6
KB
-rw-rw-rw-
FeedHandler.d.ts
1.62
KB
-rw-rw-rw-
FeedHandler.d.ts.map
1.59
KB
-rw-rw-rw-
FeedHandler.js
9.37
KB
-rw-rw-rw-
MultiplexHandler.d.ts
984
B
-rw-rw-rw-
MultiplexHandler.d.ts.map
982
B
-rw-rw-rw-
MultiplexHandler.js
1.93
KB
-rw-rw-rw-
Parser.d.ts
4.84
KB
-rw-rw-rw-
Parser.d.ts.map
2.68
KB
-rw-rw-rw-
Parser.js
12.07
KB
-rw-rw-rw-
Tokenizer.d.ts
5.56
KB
-rw-rw-rw-
Tokenizer.d.ts.map
3.56
KB
-rw-rw-rw-
Tokenizer.js
34.78
KB
-rw-rw-rw-
WritableStream.d.ts
557
B
-rw-rw-rw-
WritableStream.d.ts.map
536
B
-rw-rw-rw-
WritableStream.js
2.1
KB
-rw-rw-rw-
index.d.ts
1.77
KB
-rw-rw-rw-
index.d.ts.map
1.03
KB
-rw-rw-rw-
index.js
3.95
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : MultiplexHandler.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** * Calls a specific handler function for all events that are encountered. */ var MultiplexHandler = /** @class */ (function () { /** * @param func The function to multiplex all events to. */ function MultiplexHandler(func) { this.func = func; } MultiplexHandler.prototype.onattribute = function (name, value, quote) { this.func("onattribute", name, value, quote); }; MultiplexHandler.prototype.oncdatastart = function () { this.func("oncdatastart"); }; MultiplexHandler.prototype.oncdataend = function () { this.func("oncdataend"); }; MultiplexHandler.prototype.ontext = function (text) { this.func("ontext", text); }; MultiplexHandler.prototype.onprocessinginstruction = function (name, value) { this.func("onprocessinginstruction", name, value); }; MultiplexHandler.prototype.oncomment = function (comment) { this.func("oncomment", comment); }; MultiplexHandler.prototype.oncommentend = function () { this.func("oncommentend"); }; MultiplexHandler.prototype.onclosetag = function (name) { this.func("onclosetag", name); }; MultiplexHandler.prototype.onopentag = function (name, attribs) { this.func("onopentag", name, attribs); }; MultiplexHandler.prototype.onopentagname = function (name) { this.func("onopentagname", name); }; MultiplexHandler.prototype.onerror = function (error) { this.func("onerror", error); }; MultiplexHandler.prototype.onend = function () { this.func("onend"); }; MultiplexHandler.prototype.onparserinit = function (parser) { this.func("onparserinit", parser); }; MultiplexHandler.prototype.onreset = function () { this.func("onreset"); }; return MultiplexHandler; }()); exports.default = MultiplexHandler;
Close