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 /
pidusage /
[ HOME SHELL ]
Name
Size
Permission
Action
lib
[ DIR ]
drwxrwxr-x
LICENSE
1.05
KB
-rw-rw-r--
README.md
7.59
KB
-rw-rw-r--
index.js
1.06
KB
-rw-rw-r--
package.json
1.19
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict' const stats = require('./lib/stats') /** * Get pid informations. * @public * @param {Number|Number[]|String|String[]} pids A pid or a list of pids. * @param {Object} [options={}] Options object * @param {Function} [callback=undefined] Called when the statistics are ready. * If not provided a promise is returned instead. * @returns {Promise.<Object>} Only when the callback is not provided. */ function pidusage (pids, options, callback) { if (typeof options === 'function') { callback = options options = {} } if (options === undefined) { options = {} } options = Object.assign({ usePs: /^true$/i.test(process.env.PIDUSAGE_USE_PS), maxage: process.env.PIDUSAGE_MAXAGE }, options) if (typeof callback === 'function') { stats(pids, options, callback) return } return new Promise(function (resolve, reject) { stats(pids, options, function (err, data) { if (err) return reject(err) resolve(data) }) }) } module.exports = pidusage module.exports.clear = require('./lib/history').clear
Close