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_probe /
node_modules /
resolve /
test /
Delete
Unzip
Name
Size
Permission
Date
Action
dotdot
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
module_dir
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
node_path
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
pathfilter
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
precedence
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
resolver
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
.eslintrc
48
B
-rw-r--r--
1985-10-26 08:15
core.js
2.63
KB
-rw-r--r--
1985-10-26 08:15
dotdot.js
799
B
-rw-r--r--
1985-10-26 08:15
faulty_basedir.js
352
B
-rw-r--r--
1985-10-26 08:15
filter.js
1004
B
-rw-r--r--
1985-10-26 08:15
filter_sync.js
769
B
-rw-r--r--
1985-10-26 08:15
mock.js
4.41
KB
-rw-r--r--
1985-10-26 08:15
mock_sync.js
1.59
KB
-rw-r--r--
1985-10-26 08:15
module_dir.js
1.52
KB
-rw-r--r--
1985-10-26 08:15
node-modules-paths.js
3.08
KB
-rw-r--r--
1985-10-26 08:15
node_path.js
1.34
KB
-rw-r--r--
1985-10-26 08:15
nonstring.js
182
B
-rw-r--r--
1985-10-26 08:15
pathfilter.js
2.2
KB
-rw-r--r--
1985-10-26 08:15
precedence.js
646
B
-rw-r--r--
1985-10-26 08:15
resolver.js
13.03
KB
-rw-r--r--
1985-10-26 08:15
resolver_sync.js
7.62
KB
-rw-r--r--
1985-10-26 08:15
subdirs.js
353
B
-rw-r--r--
1985-10-26 08:15
symlinks.js
1.83
KB
-rw-r--r--
1985-10-26 08:15
Save
Rename
var path = require('path'); var test = require('tape'); var resolve = require('../'); test('mock', function (t) { t.plan(8); var files = {}; files[path.resolve('/foo/bar/baz.js')] = 'beep'; function opts(basedir) { return { basedir: path.resolve(basedir), isFile: function (file, cb) { cb(null, Object.prototype.hasOwnProperty.call(files, path.resolve(file))); }, readFile: function (file, cb) { cb(null, files[path.resolve(file)]); } }; } resolve('./baz', opts('/foo/bar'), function (err, res, pkg) { if (err) return t.fail(err); t.equal(res, path.resolve('/foo/bar/baz.js')); t.equal(pkg, undefined); }); resolve('./baz.js', opts('/foo/bar'), function (err, res, pkg) { if (err) return t.fail(err); t.equal(res, path.resolve('/foo/bar/baz.js')); t.equal(pkg, undefined); }); resolve('baz', opts('/foo/bar'), function (err, res) { t.equal(err.message, "Cannot find module 'baz' from '" + path.resolve('/foo/bar') + "'"); t.equal(err.code, 'MODULE_NOT_FOUND'); }); resolve('../baz', opts('/foo/bar'), function (err, res) { t.equal(err.message, "Cannot find module '../baz' from '" + path.resolve('/foo/bar') + "'"); t.equal(err.code, 'MODULE_NOT_FOUND'); }); }); test('mock from package', function (t) { t.plan(8); var files = {}; files[path.resolve('/foo/bar/baz.js')] = 'beep'; function opts(basedir) { return { basedir: path.resolve(basedir), isFile: function (file, cb) { cb(null, Object.prototype.hasOwnProperty.call(files, file)); }, 'package': { main: 'bar' }, readFile: function (file, cb) { cb(null, files[file]); } }; } resolve('./baz', opts('/foo/bar'), function (err, res, pkg) { if (err) return t.fail(err); t.equal(res, path.resolve('/foo/bar/baz.js')); t.equal(pkg && pkg.main, 'bar'); }); resolve('./baz.js', opts('/foo/bar'), function (err, res, pkg) { if (err) return t.fail(err); t.equal(res, path.resolve('/foo/bar/baz.js')); t.equal(pkg && pkg.main, 'bar'); }); resolve('baz', opts('/foo/bar'), function (err, res) { t.equal(err.message, "Cannot find module 'baz' from '" + path.resolve('/foo/bar') + "'"); t.equal(err.code, 'MODULE_NOT_FOUND'); }); resolve('../baz', opts('/foo/bar'), function (err, res) { t.equal(err.message, "Cannot find module '../baz' from '" + path.resolve('/foo/bar') + "'"); t.equal(err.code, 'MODULE_NOT_FOUND'); }); }); test('mock package', function (t) { t.plan(2); var files = {}; files[path.resolve('/foo/node_modules/bar/baz.js')] = 'beep'; files[path.resolve('/foo/node_modules/bar/package.json')] = JSON.stringify({ main: './baz.js' }); function opts(basedir) { return { basedir: path.resolve(basedir), isFile: function (file, cb) { cb(null, Object.prototype.hasOwnProperty.call(files, path.resolve(file))); }, readFile: function (file, cb) { cb(null, files[path.resolve(file)]); } }; } resolve('bar', opts('/foo'), function (err, res, pkg) { if (err) return t.fail(err); t.equal(res, path.resolve('/foo/node_modules/bar/baz.js')); t.equal(pkg && pkg.main, './baz.js'); }); }); test('mock package from package', function (t) { t.plan(2); var files = {}; files[path.resolve('/foo/node_modules/bar/baz.js')] = 'beep'; files[path.resolve('/foo/node_modules/bar/package.json')] = JSON.stringify({ main: './baz.js' }); function opts(basedir) { return { basedir: path.resolve(basedir), isFile: function (file, cb) { cb(null, Object.prototype.hasOwnProperty.call(files, path.resolve(file))); }, 'package': { main: 'bar' }, readFile: function (file, cb) { cb(null, files[path.resolve(file)]); } }; } resolve('bar', opts('/foo'), function (err, res, pkg) { if (err) return t.fail(err); t.equal(res, path.resolve('/foo/node_modules/bar/baz.js')); t.equal(pkg && pkg.main, './baz.js'); }); });