Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.218.99.99
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
@babel /
core /
lib /
config /
Delete
Unzip
Name
Size
Permission
Date
Action
files
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
helpers
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
validation
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
cache-contexts.js
0
B
-rw-rw-r--
2022-08-30 11:49
caching.js
7.16
KB
-rw-rw-r--
2022-08-30 11:49
config-chain.js
17.61
KB
-rw-rw-r--
2022-08-30 11:49
config-descriptors.js
6.6
KB
-rw-rw-r--
2022-08-30 11:49
full.js
10.6
KB
-rw-rw-r--
2022-08-30 11:49
index.js
2.41
KB
-rw-rw-r--
2022-08-30 11:49
item.js
1.76
KB
-rw-rw-r--
2022-08-30 11:49
partial.js
5.51
KB
-rw-rw-r--
2022-08-30 11:49
pattern-to-regex.js
1.12
KB
-rw-rw-r--
2022-08-30 11:49
plugin.js
942
B
-rw-rw-r--
2022-08-30 11:49
printer.js
2.83
KB
-rw-rw-r--
2022-08-30 11:49
resolve-targets-browser.js
945
B
-rw-rw-r--
2022-08-30 11:49
resolve-targets.js
1.4
KB
-rw-rw-r--
2022-08-30 11:49
util.js
887
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.createConfigItem = createConfigItem; exports.createItemFromDescriptor = createItemFromDescriptor; exports.getItemDescriptor = getItemDescriptor; function _path() { const data = require("path"); _path = function () { return data; }; return data; } var _configDescriptors = require("./config-descriptors"); function createItemFromDescriptor(desc) { return new ConfigItem(desc); } function* createConfigItem(value, { dirname = ".", type } = {}) { const descriptor = yield* (0, _configDescriptors.createDescriptor)(value, _path().resolve(dirname), { type, alias: "programmatic item" }); return createItemFromDescriptor(descriptor); } function getItemDescriptor(item) { if (item != null && item[CONFIG_ITEM_BRAND]) { return item._descriptor; } return undefined; } const CONFIG_ITEM_BRAND = Symbol.for("@babel/core@7 - ConfigItem"); class ConfigItem { constructor(descriptor) { this._descriptor = void 0; this[CONFIG_ITEM_BRAND] = true; this.value = void 0; this.options = void 0; this.dirname = void 0; this.name = void 0; this.file = void 0; this._descriptor = descriptor; Object.defineProperty(this, "_descriptor", { enumerable: false }); Object.defineProperty(this, CONFIG_ITEM_BRAND, { enumerable: false }); this.value = this._descriptor.value; this.options = this._descriptor.options; this.dirname = this._descriptor.dirname; this.name = this._descriptor.name; this.file = this._descriptor.file ? { request: this._descriptor.file.request, resolved: this._descriptor.file.resolved } : undefined; Object.freeze(this); } } Object.freeze(ConfigItem.prototype);