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.15.28.86
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 /
rechoir /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
.npmignore
5
B
-rw-rw-r--
2022-08-30 11:49
.travis.yml
743
B
-rw-rw-r--
2022-08-30 11:49
CHANGELOG
896
B
-rw-rw-r--
2022-08-30 11:49
LICENSE
1.03
KB
-rw-rw-r--
2022-08-30 11:49
README.md
1.97
KB
-rw-rw-r--
2022-08-30 11:49
index.js
1.35
KB
-rw-rw-r--
2022-08-30 11:49
package.json
1.72
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
const path = require('path'); const extension = require('./lib/extension'); const normalize = require('./lib/normalize'); const register = require('./lib/register'); exports.prepare = function (extensions, filepath, cwd, nothrow) { var option, attempt; var attempts = []; var err; var onlyErrors = false; var ext = extension(filepath); if (Object.keys(require.extensions).indexOf(ext) !== -1) { return true; } var config = normalize(extensions[ext]); if (!config) { if (nothrow) { return; } else { throw new Error('No module loader found for "'+ext+'".'); } } if (!cwd) { cwd = path.dirname(path.resolve(filepath)); } if (!Array.isArray(config)) { config = [config]; } for (var i in config) { option = config[i]; attempt = register(cwd, option.module, option.register); error = (attempt instanceof Error) ? attempt : null; if (error) { attempt = null; } attempts.push({ moduleName: option.module, module: attempt, error: error }); if (!error) { onlyErrors = false; break; } else { onlyErrors = true; } } if (onlyErrors) { err = new Error('Unable to use specified module loaders for "'+ext+'".'); err.failures = attempts; if (nothrow) { return err; } else { throw err; } } return attempts; };