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 : 3.140.201.179
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
yargs /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
apply-extends.js
1.44
KB
-rw-r--r--
2017-05-01 16:54
argsert.js
2.42
KB
-rw-r--r--
2017-03-03 18:36
assign.js
413
B
-rw-r--r--
2017-01-07 20:44
command.js
11.26
KB
-rw-r--r--
2017-05-01 16:54
completion.js
3.02
KB
-rw-r--r--
2017-03-03 18:36
levenshtein.js
2.1
KB
-rw-r--r--
2017-01-09 07:02
obj-filter.js
267
B
-rw-r--r--
2017-01-09 07:02
usage.js
13.3
KB
-rw-r--r--
2017-03-03 18:36
validation.js
10.15
KB
-rw-r--r--
2017-05-01 16:54
yerror.js
241
B
-rw-r--r--
2017-03-03 18:36
Save
Rename
var fs = require('fs') var path = require('path') var assign = require('./assign') var YError = require('./yerror') var previouslyVisitedConfigs = [] function checkForCircularExtends (path) { if (previouslyVisitedConfigs.indexOf(path) > -1) { throw new YError("Circular extended configurations: '" + path + "'.") } } function getPathToDefaultConfig (cwd, pathToExtend) { return path.resolve(cwd, pathToExtend) } function applyExtends (config, cwd) { var defaultConfig = {} if (config.hasOwnProperty('extends')) { if (typeof config.extends !== 'string') return defaultConfig var isPath = /\.json$/.test(config.extends) var pathToDefault = null if (!isPath) { try { pathToDefault = require.resolve(config.extends) } catch (err) { // most likely this simply isn't a module. } } else { pathToDefault = getPathToDefaultConfig(cwd, config.extends) } // maybe the module uses key for some other reason, // err on side of caution. if (!pathToDefault && !isPath) return config checkForCircularExtends(pathToDefault) previouslyVisitedConfigs.push(pathToDefault) defaultConfig = isPath ? JSON.parse(fs.readFileSync(pathToDefault, 'utf8')) : require(config.extends) delete config.extends defaultConfig = applyExtends(defaultConfig, path.dirname(pathToDefault)) } previouslyVisitedConfigs = [] return assign(defaultConfig, config) } module.exports = applyExtends