Linux bear.hostingplus.cl 4.18.0-513.18.1.lve.2.el8.x86_64 #1 SMP Sat Mar 30 15:36:11 UTC 2024 x86_64
LiteSpeed
Server IP : 192.140.57.17 & Your IP : 216.73.216.106
Domains :
Cant Read [ /etc/named.conf ]
User : explo
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
bitninja-dispatcher /
node_modules /
get-stdin /
Delete
Unzip
Name
Size
Permission
Date
Action
index.d.ts
905
B
-rw-r--r--
2026-02-18 13:02
index.js
497
B
-rw-r--r--
2026-02-18 13:02
license
1.09
KB
-rw-r--r--
2026-02-18 13:02
package.json
1.77
KB
-rw-r--r--
2026-02-18 13:02
readme.md
1.4
KB
-rw-r--r--
2026-02-18 13:02
Save
Rename
'use strict'; const {stdin} = process; module.exports = async () => { let result = ''; if (stdin.isTTY) { return result; } stdin.setEncoding('utf8'); for await (const chunk of stdin) { result += chunk; } return result; }; module.exports.buffer = async () => { const result = []; let length = 0; if (stdin.isTTY) { return Buffer.concat([]); } for await (const chunk of stdin) { result.push(chunk); length += chunk.length; } return Buffer.concat(result, length); };