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.38
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 /
redis /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
command.js
436
B
-rw-r--r--
2026-02-18 13:02
commands.js
3.99
KB
-rw-r--r--
2026-02-18 13:02
createClient.js
3.43
KB
-rw-r--r--
2026-02-18 13:02
customErrors.js
1.62
KB
-rw-r--r--
2026-02-18 13:02
debug.js
272
B
-rw-r--r--
2026-02-18 13:02
extendedApi.js
4.23
KB
-rw-r--r--
2026-02-18 13:02
individualCommands.js
22.8
KB
-rw-r--r--
2026-02-18 13:02
multi.js
6.36
KB
-rw-r--r--
2026-02-18 13:02
utils.js
4.2
KB
-rw-r--r--
2026-02-18 13:02
Save
Rename
'use strict'; var util = require('util'); var assert = require('assert'); var RedisError = require('redis-errors').RedisError; var ADD_STACKTRACE = false; function AbortError (obj, stack) { assert(obj, 'The options argument is required'); assert.strictEqual(typeof obj, 'object', 'The options argument has to be of type object'); Object.defineProperty(this, 'message', { value: obj.message || '', configurable: true, writable: true }); if (stack || stack === undefined) { Error.captureStackTrace(this, AbortError); } for (var keys = Object.keys(obj), key = keys.pop(); key; key = keys.pop()) { this[key] = obj[key]; } } function AggregateError (obj) { assert(obj, 'The options argument is required'); assert.strictEqual(typeof obj, 'object', 'The options argument has to be of type object'); AbortError.call(this, obj, ADD_STACKTRACE); Object.defineProperty(this, 'message', { value: obj.message || '', configurable: true, writable: true }); Error.captureStackTrace(this, AggregateError); for (var keys = Object.keys(obj), key = keys.pop(); key; key = keys.pop()) { this[key] = obj[key]; } } util.inherits(AbortError, RedisError); util.inherits(AggregateError, AbortError); Object.defineProperty(AbortError.prototype, 'name', { value: 'AbortError', configurable: true, writable: true }); Object.defineProperty(AggregateError.prototype, 'name', { value: 'AggregateError', configurable: true, writable: true }); module.exports = { AbortError: AbortError, AggregateError: AggregateError };