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 /
nconf /
[ HOME SHELL ]
Name
Size
Permission
Action
docs
[ DIR ]
drwxrwxr-x
lib
[ DIR ]
drwxrwxr-x
node_modules
[ DIR ]
drwxrwxr-x
test
[ DIR ]
drwxrwxr-x
.npmignore
196
B
-rw-rw-r--
.travis.yml
152
B
-rw-rw-r--
CHANGELOG.md
431
B
-rw-rw-r--
LICENSE
1.03
KB
-rw-rw-r--
README.md
7.77
KB
-rw-rw-r--
package.json
760
B
-rw-rw-r--
usage.js
1.22
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : usage.js
var fs = require('fs'), path = require('path'), nconf = require('./lib/nconf'); // // Configure the provider with a single store and // support for command-line arguments and environment // variables. // var single = new nconf.Provider({ env: true, argv: true, store: { type: 'file', file: path.join(__dirname, 'config.json') } }); // // Configure the provider with multiple hierarchical stores // representing `user` and `global` configuration values. // var multiple = new nconf.Provider({ stores: [ { name: 'user', type: 'file', file: path.join(__dirname, 'user-config.json') }, { name: 'global', type: 'global', file: path.join(__dirname, 'global-config.json') } ] }); // // Setup nconf to use the 'file' store and set a couple of values; // nconf.use('file', { file: path.join(__dirname, 'config.json') }); nconf.set('database:host', '127.0.0.1'); nconf.set('database:port', 5984); // // Get the entire database object from nconf // var database = nconf.get('database'); console.dir(database); // // Save the configuration object to disk // nconf.save(function (err) { fs.readFile(path.join(__dirname, 'config.json'), function (err, data) { console.dir(JSON.parse(data.toString())) }); });
Close