Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.17.157.165
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
/
usr /
lib /
node_modules /
npm /
node_modules /
object.getownpropertydescriptors /
[ HOME SHELL ]
Name
Size
Permission
Action
.editorconfig
276
B
-rw-r--r--
.jscs.json
4.04
KB
-rw-r--r--
.npmignore
587
B
-rw-r--r--
.travis.yml
1.91
KB
-rw-r--r--
CHANGELOG.md
1.69
KB
-rw-r--r--
LICENSE
1.06
KB
-rw-r--r--
Makefile
3.74
KB
-rw-r--r--
README.md
3.63
KB
-rw-r--r--
implementation.js
1.21
KB
-rw-r--r--
index.js
316
B
-rw-r--r--
package.json
3.08
KB
-rw-r--r--
polyfill.js
227
B
-rw-r--r--
shim.js
381
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : implementation.js
'use strict'; var ES = require('es-abstract/es7'); var defineProperty = Object.defineProperty; var getDescriptor = Object.getOwnPropertyDescriptor; var getOwnNames = Object.getOwnPropertyNames; var getSymbols = Object.getOwnPropertySymbols; var concat = Function.call.bind(Array.prototype.concat); var reduce = Function.call.bind(Array.prototype.reduce); var getAll = getSymbols ? function (obj) { return concat(getOwnNames(obj), getSymbols(obj)); } : getOwnNames; var isES5 = ES.IsCallable(getDescriptor) && ES.IsCallable(getOwnNames); var safePut = function put(obj, prop, val) { // eslint-disable-line max-params if (defineProperty && prop in obj) { defineProperty(obj, prop, { configurable: true, enumerable: true, value: val, writable: true }); } else { obj[prop] = val; } }; module.exports = function getOwnPropertyDescriptors(value) { ES.RequireObjectCoercible(value); if (!isES5) { throw new TypeError('getOwnPropertyDescriptors requires Object.getOwnPropertyDescriptor'); } var O = ES.ToObject(value); return reduce(getAll(O), function (acc, key) { var descriptor = getDescriptor(O, key); if (typeof descriptor !== 'undefined') { safePut(acc, key, descriptor); } return acc; }, {}); };
Close