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 : WritableStream.js
"use strict"; var __extends = (this && this.__extends) || (function () { var extendStatics = function (d, b) { extendStatics = Object.setPrototypeOf || ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) || function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; }; return extendStatics(d, b); }; return function (d, b) { if (typeof b !== "function" && b !== null) throw new TypeError("Class extends value " + String(b) + " is not a constructor or null"); extendStatics(d, b); function __() { this.constructor = d; } d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __()); }; })(); Object.defineProperty(exports, "__esModule", { value: true }); exports.WritableStream = void 0; var Parser_1 = require("./Parser"); /* * NOTE: If either of these two imports produces a type error, * please update your @types/node dependency! */ var stream_1 = require("stream"); var string_decoder_1 = require("string_decoder"); // Following the example in https://nodejs.org/api/stream.html#stream_decoding_buffers_in_a_writable_stream function isBuffer(_chunk, encoding) { return encoding === "buffer"; } /** * WritableStream makes the `Parser` interface available as a NodeJS stream. * * @see Parser */ var WritableStream = /** @class */ (function (_super) { __extends(WritableStream, _super); function WritableStream(cbs, options) { var _this = _super.call(this, { decodeStrings: false }) || this; _this._decoder = new string_decoder_1.StringDecoder(); _this._parser = new Parser_1.Parser(cbs, options); return _this; } WritableStream.prototype._write = function (chunk, encoding, cb) { this._parser.write(isBuffer(chunk, encoding) ? this._decoder.write(chunk) : chunk); cb(); }; WritableStream.prototype._final = function (cb) { this._parser.end(this._decoder.end()); cb(); }; return WritableStream; }(stream_1.Writable)); exports.WritableStream = WritableStream;
Close