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.218.60.55
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
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(4); var files = {}; files[path.resolve('/foo/bar/baz.js')] = 'beep'; function opts(basedir) { return { basedir: path.resolve(basedir), isFile: function (file) { return Object.prototype.hasOwnProperty.call(files, file); }, readFileSync: function (file) { return files[file]; } }; } t.equal( resolve.sync('./baz', opts('/foo/bar')), path.resolve('/foo/bar/baz.js') ); t.equal( resolve.sync('./baz.js', opts('/foo/bar')), path.resolve('/foo/bar/baz.js') ); t.throws(function () { resolve.sync('baz', opts('/foo/bar')); }); t.throws(function () { resolve.sync('../baz', opts('/foo/bar')); }); }); test('mock package', function (t) { t.plan(1); 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) { return Object.prototype.hasOwnProperty.call(files, file); }, readFileSync: function (file) { return files[file]; } }; } t.equal( resolve.sync('bar', opts('/foo')), path.resolve('/foo/node_modules/bar/baz.js') ); });