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.22.62
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
npm /
lib /
install /
Delete
Unzip
Name
Size
Permission
Date
Action
action
[ DIR ]
drwxr-xr-x
2022-01-26 16:43
access-error.js
202
B
-rw-r--r--
2022-01-10 12:20
actions.js
5.52
KB
-rw-r--r--
2022-01-10 12:20
and-add-parent-to-errors.js
375
B
-rw-r--r--
2022-01-10 12:20
and-finish-tracker.js
360
B
-rw-r--r--
2022-01-10 12:20
and-ignore-errors.js
204
B
-rw-r--r--
2022-01-10 12:20
audit.js
8.24
KB
-rw-r--r--
2022-01-10 12:20
check-permissions.js
1.85
KB
-rw-r--r--
2022-01-10 12:20
copy-tree.js
770
B
-rw-r--r--
2022-01-10 12:20
decompose-actions.js
2.18
KB
-rw-r--r--
2022-01-10 12:20
deps.js
30.32
KB
-rw-r--r--
2022-01-10 12:20
diff-trees.js
9.12
KB
-rw-r--r--
2022-01-10 12:20
exists.js
775
B
-rw-r--r--
2022-01-10 12:20
flatten-tree.js
1021
B
-rw-r--r--
2022-01-10 12:20
fund.js
1.28
KB
-rw-r--r--
2022-01-10 12:20
get-requested.js
635
B
-rw-r--r--
2022-01-10 12:20
has-modern-meta.js
702
B
-rw-r--r--
2022-01-10 12:20
inflate-bundled.js
628
B
-rw-r--r--
2022-01-10 12:20
inflate-shrinkwrap.js
8.87
KB
-rw-r--r--
2022-01-10 12:20
is-dev-dep.js
175
B
-rw-r--r--
2022-01-10 12:20
is-extraneous.js
618
B
-rw-r--r--
2022-01-10 12:20
is-fs-access-available.js
763
B
-rw-r--r--
2022-01-10 12:20
is-only-dev.js
1.24
KB
-rw-r--r--
2022-01-10 12:20
is-only-optional.js
674
B
-rw-r--r--
2022-01-10 12:20
is-opt-dep.js
185
B
-rw-r--r--
2022-01-10 12:20
is-prod-dep.js
172
B
-rw-r--r--
2022-01-10 12:20
module-staging-path.js
259
B
-rw-r--r--
2022-01-10 12:20
mutate-into-logical-tree.js
4.52
KB
-rw-r--r--
2022-01-10 12:20
node.js
1.85
KB
-rw-r--r--
2022-01-10 12:20
read-shrinkwrap.js
3.67
KB
-rw-r--r--
2022-01-10 12:20
realize-shrinkwrap-specifier.js
621
B
-rw-r--r--
2022-01-10 12:20
report-optional-failure.js
1.02
KB
-rw-r--r--
2022-01-10 12:20
save.js
5.91
KB
-rw-r--r--
2022-01-10 12:20
update-package-json.js
1.87
KB
-rw-r--r--
2022-01-10 12:20
validate-args.js
2.73
KB
-rw-r--r--
2022-01-10 12:20
validate-tree.js
3.1
KB
-rw-r--r--
2022-01-10 12:20
writable.js
1
KB
-rw-r--r--
2022-01-10 12:20
Save
Rename
'use strict' var path = require('path') var log = require('npmlog') var validate = require('aproba') var uniq = require('lodash.uniq') var asyncMap = require('slide').asyncMap var npm = require('../npm.js') var exists = require('./exists.js') var writable = require('./writable.js') module.exports = function (actions, next) { validate('AF', arguments) var errors = [] asyncMap(actions, function (action, done) { var cmd = action[0] var pkg = action[1] switch (cmd) { case 'add': hasAnyWriteAccess(path.resolve(pkg.path, '..'), errors, done) break case 'update': case 'remove': hasWriteAccess(pkg.path, errors, andHasWriteAccess(path.resolve(pkg.path, '..'), errors, done)) break case 'move': hasAnyWriteAccess(pkg.path, errors, andHasWriteAccess(path.resolve(pkg.fromPath, '..'), errors, done)) break default: done() } }, function () { if (!errors.length) return next() uniq(errors.map(function (er) { return 'Missing write access to ' + er.path })).forEach(function (er) { log.warn('checkPermissions', er) }) npm.config.get('force') ? next() : next(errors[0]) }) } function andHasWriteAccess (dir, errors, done) { validate('SAF', arguments) return function () { hasWriteAccess(dir, errors, done) } } function hasAnyWriteAccess (dir, errors, done) { validate('SAF', arguments) findNearestDir() function findNearestDir () { var nextDir = path.resolve(dir, '..') exists(dir, function (dirDoesntExist) { if (!dirDoesntExist || nextDir === dir) { return hasWriteAccess(dir, errors, done) } else { dir = nextDir findNearestDir() } }) } } function hasWriteAccess (dir, errors, done) { validate('SAF', arguments) writable(dir, function (er) { if (er) errors.push(er) done() }) }