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.254.100
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 /
action /
Delete
Unzip
Name
Size
Permission
Date
Action
build.js
412
B
-rw-r--r--
2022-01-10 12:20
extract-worker.js
473
B
-rw-r--r--
2022-01-10 12:20
extract.js
3.87
KB
-rw-r--r--
2022-01-10 12:20
fetch.js
524
B
-rw-r--r--
2022-01-10 12:20
finalize.js
3.81
KB
-rw-r--r--
2022-01-10 12:20
global-install.js
656
B
-rw-r--r--
2022-01-10 12:20
global-link.js
289
B
-rw-r--r--
2022-01-10 12:20
install.js
266
B
-rw-r--r--
2022-01-10 12:20
move.js
3.09
KB
-rw-r--r--
2022-01-10 12:20
postinstall.js
274
B
-rw-r--r--
2022-01-10 12:20
preinstall.js
272
B
-rw-r--r--
2022-01-10 12:20
prepare.js
1.03
KB
-rw-r--r--
2022-01-10 12:20
refresh-package-json.js
1.5
KB
-rw-r--r--
2022-01-10 12:20
remove.js
2.59
KB
-rw-r--r--
2022-01-10 12:20
unbuild.js
659
B
-rw-r--r--
2022-01-10 12:20
Save
Rename
'use strict' const Bluebird = require('bluebird') const checkPlatform = Bluebird.promisify(require('npm-install-checks').checkPlatform) const getRequested = require('../get-requested.js') const npm = require('../../npm.js') const path = require('path') const readJson = Bluebird.promisify(require('read-package-json')) const updatePackageJson = Bluebird.promisify(require('../update-package-json')) module.exports = function (staging, pkg, log) { log.silly('refresh-package-json', pkg.realpath) return readJson(path.join(pkg.path, 'package.json'), false).then((metadata) => { Object.keys(pkg.package).forEach(function (key) { if (key !== 'version' && key !== 'dependencies' && !isEmpty(pkg.package[key])) { metadata[key] = pkg.package[key] } }) if (metadata._resolved == null && pkg.fakeChild) { metadata._resolved = pkg.fakeChild.resolved } // These two sneak in and it's awful delete metadata.readme delete metadata.readmeFilename pkg.package = metadata pkg.fakeChild = false }).catch(() => 'ignore').then(() => { return checkPlatform(pkg.package, npm.config.get('force')) }).then(() => { const requested = pkg.package._requested || getRequested(pkg) if (requested.type !== 'directory') { return updatePackageJson(pkg, pkg.path) } }) } function isEmpty (value) { if (value == null) return true if (Array.isArray(value)) return !value.length if (typeof value === 'object') return !Object.keys(value).length return false }