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-threat-hunting /
node_modules /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxr-xr-x
2024-07-04 08:39
History.md
18.91
KB
-rw-r--r--
2024-07-01 08:57
LICENSE
1.1
KB
-rw-r--r--
2024-07-01 08:57
README.md
9.27
KB
-rw-r--r--
2024-07-01 08:57
async.js
2.4
KB
-rw-r--r--
2024-07-01 08:57
defer.js
926
B
-rw-r--r--
2024-07-01 08:57
package.json
2
KB
-rw-r--r--
2024-07-01 08:57
parser.js
9.82
KB
-rw-r--r--
2024-07-01 08:57
raw.js
384
B
-rw-r--r--
2024-07-01 08:57
Save
Rename
// Create a deferredConfig prototype so that we can check for it when reviewing the configs later. function DeferredConfig() {} DeferredConfig.prototype.prepare = function() {}; DeferredConfig.prototype.resolve = function() {}; // Accept a function that we'll use to resolve this value later and return a 'deferred' configuration value to resolve it later. function deferConfig(func) { var obj = Object.create(DeferredConfig.prototype); obj.prepare = function(config, prop, property) { var original = prop[property]._original; obj.resolve = function() { var value = func.call(config, config, original); Object.defineProperty(prop, property, {value: value}); return value; }; Object.defineProperty(prop, property, {get: function() { return obj.resolve(); }}); return obj; }; return obj; } module.exports.deferConfig = deferConfig; module.exports.DeferredConfig = DeferredConfig;