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.188.161.182
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.default = pathToPattern; function _path() { const data = require("path"); _path = function () { return data; }; return data; } const sep = `\\${_path().sep}`; const endSep = `(?:${sep}|$)`; const substitution = `[^${sep}]+`; const starPat = `(?:${substitution}${sep})`; const starPatLast = `(?:${substitution}${endSep})`; const starStarPat = `${starPat}*?`; const starStarPatLast = `${starPat}*?${starPatLast}?`; function escapeRegExp(string) { return string.replace(/[|\\{}()[\]^$+*?.]/g, "\\$&"); } function pathToPattern(pattern, dirname) { const parts = _path().resolve(dirname, pattern).split(_path().sep); return new RegExp(["^", ...parts.map((part, i) => { const last = i === parts.length - 1; if (part === "**") return last ? starStarPatLast : starStarPat; if (part === "*") return last ? starPatLast : starPat; if (part.indexOf("*.") === 0) { return substitution + escapeRegExp(part.slice(1)) + (last ? endSep : sep); } return escapeRegExp(part) + (last ? endSep : sep); })].join("")); }