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.147.67.34
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 fs = require('fs'); var test = require('tape'); var resolve = require('../'); var symlinkDir = path.join(__dirname, 'resolver', 'symlinked', 'symlink'); try { fs.unlinkSync(symlinkDir); } catch (err) {} try { fs.symlinkSync('./_/symlink_target', symlinkDir, 'dir'); } catch (err) { // if fails then it is probably on Windows and lets try to create a junction fs.symlinkSync(path.join(__dirname, 'resolver', 'symlinked', '_', 'symlink_target') + '\\', symlinkDir, 'junction'); } test('symlink', function (t) { t.plan(1); resolve('foo', { basedir: symlinkDir, preserveSymlinks: false }, function (err, res, pkg) { if (err) t.fail(err); t.equal(res, path.join(__dirname, 'resolver', 'symlinked', '_', 'node_modules', 'foo.js')); }); }); test('sync symlink when preserveSymlinks = true', function (t) { t.plan(4); resolve('foo', { basedir: symlinkDir }, function (err, res, pkg) { t.ok(err, 'there is an error'); t.notOk(res, 'no result'); t.equal(err && err.code, 'MODULE_NOT_FOUND', 'error code matches require.resolve'); t.equal( err && err.message, 'Cannot find module \'foo\' from \'' + symlinkDir + '\'', 'can not find nonexistent module' ); }); }); test('sync symlink', function (t) { var start = new Date(); t.doesNotThrow(function () { t.equal(resolve.sync('foo', { basedir: symlinkDir, preserveSymlinks: false }), path.join(__dirname, 'resolver', 'symlinked', '_', 'node_modules', 'foo.js')); }); t.ok(new Date() - start < 50, 'resolve.sync timedout'); t.end(); }); test('sync symlink when preserveSymlinks = true', function (t) { t.throws(function () { resolve.sync('foo', { basedir: symlinkDir }); }, /Cannot find module 'foo'/); t.end(); });