Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
events /
node_modules /
pm2 /
lib /
API /
UX /
[ HOME SHELL ]
Name
Size
Permission
Action
helpers.js
4.87
KB
-rw-rw-r--
index.js
190
B
-rw-rw-r--
pm2-describe.js
6.48
KB
-rw-rw-r--
pm2-ls-minimal.js
1.16
KB
-rw-rw-r--
pm2-ls.js
13.36
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pm2-ls-minimal.js
const UxHelpers = require('./helpers.js') const p = require('path') /** * Minimal display via pm2 ls -m * @method miniDisplay * @param {Object} list process list */ module.exports = function(list) { list.forEach(function(l) { var mode = l.pm2_env.exec_mode.split('_mode')[0] var status = l.pm2_env.status var key = l.pm2_env.name || p.basename(l.pm2_env.pm_exec_path.script) console.log('+--- %s', key) console.log('namespace : %s', l.pm2_env.namespace) console.log('version : %s', l.pm2_env.version) console.log('pid : %s', l.pid) console.log('pm2 id : %s', l.pm2_env.pm_id) console.log('status : %s', status) console.log('mode : %s', mode) console.log('restarted : %d', l.pm2_env.restart_time ? l.pm2_env.restart_time : 0) console.log('uptime : %s', (l.pm2_env.pm_uptime && status == 'online') ? UxHelpers.timeSince(l.pm2_env.pm_uptime) : 0) console.log('memory usage : %s', l.monit ? UxHelpers.bytesToSize(l.monit.memory, 1) : '') console.log('error log : %s', l.pm2_env.pm_err_log_path) console.log('watching : %s', l.pm2_env.watch ? 'yes' : 'no') console.log('PID file : %s\n', l.pm2_env.pm_pid_path) }) }
Close