Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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
/
usr /
share /
npm /
node_modules /
sorted-union-stream /
[ HOME SHELL ]
Name
Size
Permission
Action
node_modules
[ DIR ]
drwxr-xr-x
.travis.yml
58
B
-rw-r--r--
README.md
1.39
KB
-rw-r--r--
example.js
313
B
-rw-r--r--
index.js
1.14
KB
-rw-r--r--
package.json
1.66
KB
-rw-r--r--
test.js
2.99
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
var iterate = require('stream-iterate') var from = require('from2') var defaultKey = function (val) { return val.key || val } var union = function (streamA, streamB, toKey) { var readA = iterate(streamA) var readB = iterate(streamB) if (!toKey) toKey = defaultKey var stream = from.obj(function loop (size, cb) { readA(function (err, dataA, nextA) { if (err) return cb(err) readB(function (err, dataB, nextB) { if (err) return cb(err) if (!dataA && !dataB) return cb(null, null) if (!dataA) { nextB() return cb(null, dataB) } if (!dataB) { nextA() return cb(null, dataA) } var keyA = toKey(dataA) var keyB = toKey(dataB) if (keyA === keyB) { nextB() return loop(size, cb) } if (keyA < keyB) { nextA() return cb(null, dataA) } nextB() cb(null, dataB) }) }) }) stream.on('close', function () { if (streamA.destroy) streamA.destroy() if (streamB.destroy) streamB.destroy() }) return stream } module.exports = union
Close