Linux vmi2545633.contaboserver.net 6.1.0-32-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.129-1 (2025-03-06) x86_64
Apache/2.4.62 (Debian)
Server IP : 127.0.0.1 & Your IP : 127.0.0.1
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
node_modules /
pm2 /
lib /
API /
pm2-plus /
Delete
Unzip
Name
Size
Permission
Date
Action
auth-strategies
[ DIR ]
drwxr-xr-x
2025-04-08 13:05
pres
[ DIR ]
drwxr-xr-x
2025-04-08 13:05
PM2IO.js
12.03
KB
-rw-r--r--
2025-04-08 13:05
helpers.js
2.55
KB
-rw-r--r--
2025-04-08 13:05
link.js
3.38
KB
-rw-r--r--
2025-04-08 13:05
process-selector.js
1.75
KB
-rw-r--r--
2025-04-08 13:05
Save
Rename
var cst = require('../../../constants.js'); var Common = require('../../Common.js'); const chalk = require('chalk'); const forEach = require('async/forEach'); const open = require('../../tools/open.js'); const Modules = require('../Modules'); function processesAreAlreadyMonitored(CLI, cb) { CLI.Client.executeRemote('getMonitorData', {}, function(err, list) { if (err) return cb(false); var l = list.filter(l => l.pm2_env.km_link == true) var l2 = list.filter(l => l.name == 'pm2-server-monit') return cb(l.length > 0 && l2.length > 0 ? true : false) }) } module.exports = function(CLI) { CLI.prototype.openDashboard = function() { if (!this.gl_interact_infos) { Common.printError(chalk.bold.white('Agent if offline, type `$ pm2 plus` to log in')); return this.exitCli(cst.ERROR_EXIT); } var uri = `https://app.pm2.io/#/r/${this.gl_interact_infos.public_key}` console.log(cst.PM2_IO_MSG + ` Opening ${uri}`) open(uri); setTimeout(_ => { this.exitCli(); }, 200); }; CLI.prototype.clearSetup = function (opts, cb) { const modules = ['event-loop-inspector'] this.gl_is_km_linked = false forEach(modules, (_module, next) => { Modules.uninstall(this, _module, () => { next() }); }, (err) => { this.reload('all', () => { return cb() }) }) } /** * Install required package and enable flags for current running processes */ CLI.prototype.minimumSetup = function (opts, cb) { var self = this; this.gl_is_km_linked = true function install(cb) { var modules = [] if (opts.type === 'enterprise' || opts.type === 'plus') { modules = ['pm2-logrotate', 'pm2-server-monit'] if (opts.type === 'enterprise') { modules.push('deep-metrics') } } forEach(modules, (_module, next) => { Modules.install(self, _module, {}, () => { next() }); }, (err) => { self.reload('all', () => { return cb() }) }) } processesAreAlreadyMonitored(self, (already_monitored) => { if (already_monitored) { console.log(cst.PM2_IO_MSG + ` PM2 ${opts.type || ''} bundle already installed`); return cb() } if (opts.installAll) return install(cb) // promptly.confirm(chalk.bold('Install all pm2 plus dependencies ? (y/n)'), (err, answer) => { // if (!err && answer === true) return install(cb) // self.reload('all', () => { // return cb() // }) // }); }) } }