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 test = require('tape'); var resolve = require('../'); test('filter', function (t) { t.plan(4); var dir = path.join(__dirname, 'resolver'); var packageFilterArgs; resolve('./baz', { basedir: dir, packageFilter: function (pkg, pkgfile) { pkg.main = 'doom'; packageFilterArgs = [pkg, pkgfile]; return pkg; } }, function (err, res, pkg) { if (err) t.fail(err); t.equal(res, path.join(dir, 'baz/doom.js'), 'changing the package "main" works'); var packageData = packageFilterArgs[0]; t.equal(pkg, packageData, 'first packageFilter argument is "pkg"'); t.equal(packageData.main, 'doom', 'package "main" was altered'); var packageFile = packageFilterArgs[1]; t.equal( packageFile, path.join(dir, 'baz/package.json'), 'second packageFilter argument is "pkgfile"' ); t.end(); }); });