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 /
tools /
[ HOME SHELL ]
Name
Size
Permission
Action
Config.js
6.09
KB
-rw-rw-r--
IsAbsolute.js
606
B
-rw-rw-r--
copydirSync.js
2.8
KB
-rw-rw-r--
deleteFolderRecursive.js
480
B
-rw-rw-r--
find-package-json.js
1.73
KB
-rw-rw-r--
fmt.js
2.04
KB
-rw-rw-r--
isbinaryfile.js
2.64
KB
-rw-rw-r--
json5.js
22.94
KB
-rw-rw-r--
open.js
1.57
KB
-rw-rw-r--
passwd.js
1.13
KB
-rw-rw-r--
promise.min.js
2.59
KB
-rw-rw-r--
sexec.js
1.17
KB
-rw-rw-r--
treeify.js
3.46
KB
-rw-rw-r--
which.js
3.49
KB
-rw-rw-r--
xdg-open
20.93
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : fmt.js
// -------------------------------------------------------------------------------------------------------------------- // // fmt.js - Command line output formatting. // // Copyright (c) 2012 Andrew Chilton - http://chilts.org/ // Written by Andrew Chilton <andychilton@gmail.com> // // License: http://opensource.org/licenses/MIT // // -------------------------------------------------------------------------------------------------------------------- var util = require('util'); // -------------------------------------------------------------------------------------------------------------------- var sep = '==============================================================================='; var line = '-------------------------------------------------------------------------------'; var field = ' '; // -------------------------------------------------------------------------------------------------------------------- // separator module.exports.separator = function() { console.log(sep); }; // alias the above module.exports.sep = module.exports.separator; // line module.exports.line = function() { console.log(line); }; // title module.exports.title = function(title) { var out = '--- ' + title + ' '; out += line.substr(out.length); console.log(out); }; // field module.exports.field = function(key, value) { console.log('' + key + field.substr(key.length) + ' : ' + value); }; // subfield module.exports.subfield = function(key, value) { console.log('- ' + key + field.substr(key.length + 2) + ' : ' + value); }; // list item module.exports.li = function(msg) { console.log('* ' + msg); }; // dump module.exports.dump = function(data, name) { if ( name ) { console.log(name + ' :', util.inspect(data, false, null, true)); } else { console.log(util.inspect(data, false, null, true)); } }; // msg module.exports.msg = function(msg) { console.log(msg); }; // --------------------------------------------------------------------------------------------------------------------
Close