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 /
test /
[ HOME SHELL ]
Name
Size
Permission
Action
fixtures
[ DIR ]
drwxrwxr-x
mocks
[ DIR ]
drwxrwxr-x
stores
[ DIR ]
drwxrwxr-x
common-test.js
886
B
-rw-rw-r--
complete-test.js
3.65
KB
-rw-rw-r--
helpers.js
1.73
KB
-rw-rw-r--
hierarchy-test.js
3.49
KB
-rw-rw-r--
nconf-test.js
3.9
KB
-rw-rw-r--
provider-save-test.js
934
B
-rw-rw-r--
provider-test.js
5.87
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : hierarchy-test.js
/* * hierarchy-test.js: Basic tests for hierarchical file stores. * * (C) 2011, Nodejitsu Inc. * */ var assert = require('assert'), fs = require('fs'), path = require('path'), spawn = require('child_process').spawn, vows = require('vows'), nconf = require('../lib/nconf'); var configDir = path.join(__dirname, 'fixtures', 'hierarchy'), globalConfig = path.join(configDir, 'global.json'), userConfig = path.join(configDir, 'user.json'); vows.describe('nconf/hierarchy').addBatch({ "When using nconf": { "configured with two file stores": { topic: function () { nconf.add('user', { type: 'file', file: userConfig }); nconf.add('global', { type: 'file', file: globalConfig }); nconf.load(); return nconf; }, "should have the appropriate keys present": function () { assert.equal(nconf.get('title'), 'My specific title'); assert.equal(nconf.get('color'), 'green'); assert.equal(nconf.get('movie'), 'Kill Bill'); } }, "configured with two file stores using `file`": { topic: function () { nconf.file('user', userConfig); nconf.file('global', globalConfig); nconf.load(); return nconf; }, "should have the appropriate keys present": function () { assert.equal(nconf.get('title'), 'My specific title'); assert.equal(nconf.get('color'), 'green'); assert.equal(nconf.get('movie'), 'Kill Bill'); } }, "configured with .argv(), .env() and .file()": { topic: function () { var configFile = path.join(__dirname, 'fixtures', 'load-save.json'), script = path.join(__dirname, 'fixtures', 'scripts', 'nconf-hierarchical-load-save.js'), argv = ['--foo', 'foo', '--bar', 'bar'], that = this, data = '', child; try { fs.unlinkSync(configFile) } catch (ex) { } child = spawn('node', [script].concat(argv)); child.stdout.on('data', function (d) { data += d; }); child.on('exit', function () { fs.readFile(configFile, 'utf8', that.callback.bind(null, null, data)); }); }, "should not persist information passed in to process.env and process.argv to disk ": function (_, data, _, ondisk){ assert.equal(data, 'foo'); assert.deepEqual(JSON.parse(ondisk), { database: { host: '127.0.0.1', port: 5984 } }); } }, "configured with .argv(), .file() and invoked with nested command line options": { topic: function () { var script = path.join(__dirname, 'fixtures', 'scripts', 'nconf-hierarchical-load-merge.js'), argv = ['--candy:something', 'foo', '--candy:something5:second', 'bar'], that = this, data = '', child; child = spawn('node', [script].concat(argv)); child.stdout.on('data', function (d) { data += d; }); child.on('exit', function() { that.callback(null, data); }); }, "should merge nested objects ": function (err, data) { assert.deepEqual(JSON.parse(data), { apples: true, candy: { something: 'foo', something1: true, something2: true, something5: { first: 1, second: 'bar' } } }); } } } }).export(module);
Close