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 : 52.14.238.102
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 /
object-visit /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE
1.06
KB
-rw-r--r--
2015-06-28 22:23
README.md
3.46
KB
-rw-r--r--
2017-04-09 21:08
index.js
806
B
-rw-r--r--
2017-05-30 04:00
package.json
2.04
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
/*! * object-visit <https://github.com/jonschlinkert/object-visit> * * Copyright (c) 2015, 2017, Jon Schlinkert. * Released under the MIT License. */ 'use strict'; var isObject = require('isobject'); module.exports = function visit(thisArg, method, target, val) { if (!isObject(thisArg) && typeof thisArg !== 'function') { throw new Error('object-visit expects `thisArg` to be an object.'); } if (typeof method !== 'string') { throw new Error('object-visit expects `method` name to be a string'); } if (typeof thisArg[method] !== 'function') { return thisArg; } var args = [].slice.call(arguments, 3); target = target || {}; for (var key in target) { var arr = [key, target[key]].concat(args); thisArg[method].apply(thisArg, arr); } return thisArg; };