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.219.197.162
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
ajv /
lib /
compile /
Delete
Unzip
Name
Size
Permission
Date
Action
_rules.js
1.19
KB
-rw-r--r--
2017-12-16 20:21
async.js
2.58
KB
-rw-r--r--
2017-04-28 19:07
equal.js
60
B
-rw-r--r--
2017-06-16 22:01
error_classes.js
828
B
-rw-r--r--
2017-04-28 19:07
formats.js
11.46
KB
-rw-r--r--
2017-12-16 20:21
index.js
10.09
KB
-rw-r--r--
2017-12-16 20:21
resolve.js
7.74
KB
-rw-r--r--
2017-06-16 22:02
rules.js
1.74
KB
-rw-r--r--
2017-12-16 20:21
schema_obj.js
133
B
-rw-r--r--
2016-11-09 02:42
ucs2length.js
558
B
-rw-r--r--
2017-03-04 18:19
util.js
7.71
KB
-rw-r--r--
2017-07-06 23:05
Save
Rename
'use strict'; var ruleModules = require('./_rules') , toHash = require('./util').toHash; module.exports = function rules() { var RULES = [ { type: 'number', rules: [ { 'maximum': ['exclusiveMaximum'] }, { 'minimum': ['exclusiveMinimum'] }, 'multipleOf', 'format'] }, { type: 'string', rules: [ 'maxLength', 'minLength', 'pattern', 'format' ] }, { type: 'array', rules: [ 'maxItems', 'minItems', 'uniqueItems', 'contains', 'items' ] }, { type: 'object', rules: [ 'maxProperties', 'minProperties', 'required', 'dependencies', 'propertyNames', { 'properties': ['additionalProperties', 'patternProperties'] } ] }, { rules: [ '$ref', 'const', 'enum', 'not', 'anyOf', 'oneOf', 'allOf' ] } ]; var ALL = [ 'type' ]; var KEYWORDS = [ 'additionalItems', '$schema', '$id', 'id', 'title', 'description', 'default', 'definitions' ]; var TYPES = [ 'number', 'integer', 'string', 'array', 'object', 'boolean', 'null' ]; RULES.all = toHash(ALL); RULES.types = toHash(TYPES); RULES.forEach(function (group) { group.rules = group.rules.map(function (keyword) { var implKeywords; if (typeof keyword == 'object') { var key = Object.keys(keyword)[0]; implKeywords = keyword[key]; keyword = key; implKeywords.forEach(function (k) { ALL.push(k); RULES.all[k] = true; }); } ALL.push(keyword); var rule = RULES.all[keyword] = { keyword: keyword, code: ruleModules[keyword], implements: implKeywords }; return rule; }); if (group.type) RULES.types[group.type] = group; }); RULES.keywords = toHash(ALL.concat(KEYWORDS)); RULES.custom = {}; return RULES; };