Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.144.132.48
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
lazystream /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
lazystream.js
1.29
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
var util = require('util'); var PassThrough = require('readable-stream/passthrough'); module.exports = { Readable: Readable, Writable: Writable }; util.inherits(Readable, PassThrough); util.inherits(Writable, PassThrough); // Patch the given method of instance so that the callback // is executed once, before the actual method is called the // first time. function beforeFirstCall(instance, method, callback) { instance[method] = function() { delete instance[method]; callback.apply(this, arguments); return this[method].apply(this, arguments); }; } function Readable(fn, options) { if (!(this instanceof Readable)) return new Readable(fn, options); PassThrough.call(this, options); beforeFirstCall(this, '_read', function() { var source = fn.call(this, options); var emit = this.emit.bind(this, 'error'); source.on('error', emit); source.pipe(this); }); this.emit('readable'); } function Writable(fn, options) { if (!(this instanceof Writable)) return new Writable(fn, options); PassThrough.call(this, options); beforeFirstCall(this, '_write', function() { var destination = fn.call(this, options); var emit = this.emit.bind(this, 'error'); destination.on('error', emit); this.pipe(destination); }); this.emit('writable'); }