Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
has-own-deep /
Delete
Unzip
Name
Size
Permission
Date
Action
index.js
1.15
KB
-rw-r--r--
2021-11-12 22:29
package.json
1.08
KB
-rw-r--r--
2021-11-12 22:29
Save
Rename
/*! * has-own-deep <https://github.com/jonschlinkert/has-own-deep> * * Copyright (c) 2015-2018, Jon Schlinkert. * Released under the MIT License. */ 'use strict'; const hasOwn = Object.prototype.hasOwnProperty; const isObject = require('isobject'); module.exports = function(target, path) { if (!isObject(target) && !Array.isArray(target)) { throw new TypeError('expected the first argument to be an object or array'); } if (typeof path !== 'string') { throw new TypeError('expected object path to be a string'); } if (hasOwn.call(target, path)) { return true; } let segs = Array.isArray(path) ? path : path.split(/\\?\./); let obj = target; while ((isObject(obj) || Array.isArray(obj)) && segs.length) { if (hasOwn.call(obj, segs[0])) { obj = obj[segs.shift()]; continue; } let rest = segs.slice(); let has = false; do { const prop = rest.join('.'); if ((has = hasOwn.call(obj, prop))) { segs = segs.slice(rest.length); obj = obj[prop]; break; } rest.pop(); } while (rest.length); if (!has) { return false; } } return true; };