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.15.28.86
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
stream-each /
Delete
Unzip
Name
Size
Permission
Date
Action
.travis.yml
62
B
-rw-r--r--
1985-10-26 08:15
LICENSE
1.05
KB
-rw-r--r--
1985-10-26 08:15
README.md
1012
B
-rw-r--r--
1985-10-26 08:15
collaborators.md
352
B
-rw-r--r--
1985-10-26 08:15
index.js
1.02
KB
-rw-r--r--
1985-10-26 08:15
package.json
1.45
KB
-rw-r--r--
2021-02-04 21:24
test.js
2.45
KB
-rw-r--r--
1985-10-26 08:15
Save
Rename
var eos = require('end-of-stream') var shift = require('stream-shift') module.exports = each function each (stream, fn, cb) { var want = true var error = null var ended = false var running = false var calling = false stream.on('readable', onreadable) onreadable() if (cb) eos(stream, {readable: true, writable: false}, done) return stream function done (err) { if (!error) error = err ended = true if (!running) cb(error) } function onreadable () { if (want) read() } function afterRead (err) { running = false if (err) { error = err if (ended) return cb(error) stream.destroy(err) return } if (ended) return cb(error) if (!calling) read() } function read () { while (!running && !ended) { want = false var data = shift(stream) if (ended) return if (data === null) { want = true return } running = true calling = true fn(data, afterRead) calling = false } } }