Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
@npmcli /
arborist /
lib /
arborist /
Delete
Unzip
Name
Size
Permission
Date
Action
audit.js
1.29
KB
-rw-r--r--
2023-11-23 07:39
build-ideal-tree.js
53.91
KB
-rw-r--r--
2023-11-23 07:39
deduper.js
594
B
-rw-r--r--
2023-11-23 07:39
index.js
5.22
KB
-rw-r--r--
2023-11-23 07:39
load-actual.js
15.14
KB
-rw-r--r--
2023-11-23 07:39
load-virtual.js
10.26
KB
-rw-r--r--
2023-11-23 07:39
load-workspaces.js
800
B
-rw-r--r--
2023-11-23 07:39
pruner.js
893
B
-rw-r--r--
2023-11-23 07:39
rebuild.js
12.45
KB
-rw-r--r--
2023-11-23 07:39
reify.js
55
KB
-rw-r--r--
2023-11-23 07:39
Save
Rename
// mixin implementing the audit method const AuditReport = require('../audit-report.js') // shared with reify const _global = Symbol.for('global') const _workspaces = Symbol.for('workspaces') const _includeWorkspaceRoot = Symbol.for('includeWorkspaceRoot') module.exports = cls => class Auditor extends cls { async audit (options = {}) { this.addTracker('audit') if (this[_global]) { throw Object.assign( new Error('`npm audit` does not support testing globals'), { code: 'EAUDITGLOBAL' } ) } // allow the user to set options on the ctor as well. // XXX: deprecate separate method options objects. options = { ...this.options, ...options } process.emit('time', 'audit') const tree = await this.loadVirtual() if (this[_workspaces] && this[_workspaces].length) { options.filterSet = this.workspaceDependencySet( tree, this[_workspaces], this[_includeWorkspaceRoot] ) } if (!options.workspacesEnabled) { options.filterSet = this.excludeWorkspacesDependencySet(tree) } this.auditReport = await AuditReport.load(tree, options) const ret = options.fix ? this.reify(options) : this.auditReport process.emit('timeEnd', 'audit') this.finishTracker('audit') return ret } }