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 /
is-array-buffer /
[ HOME SHELL ]
Name
Size
Permission
Action
.github
[ DIR ]
drwxrwxr-x
test
[ DIR ]
drwxrwxr-x
.eslintrc
184
B
-rw-rw-r--
.nycrc
139
B
-rw-rw-r--
CHANGELOG.md
4.12
KB
-rw-rw-r--
LICENSE
1.06
KB
-rw-rw-r--
README.md
2.35
KB
-rw-rw-r--
index.d.ts
94
B
-rw-rw-r--
index.js
1.36
KB
-rw-rw-r--
package.json
2.29
KB
-rw-rw-r--
tsconfig.json
3.53
KB
-rw-rw-r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
'use strict'; var callBind = require('call-bind'); var callBound = require('call-bind/callBound'); var GetIntrinsic = require('get-intrinsic'); var $ArrayBuffer = GetIntrinsic('%ArrayBuffer%', true); /** @type {undefined | ((receiver: ArrayBuffer) => number) | ((receiver: unknown) => never)} */ var $byteLength = callBound('ArrayBuffer.prototype.byteLength', true); var $toString = callBound('Object.prototype.toString'); // in node 0.10, ArrayBuffers have no prototype methods, but have an own slot-checking `slice` method var abSlice = !!$ArrayBuffer && !$byteLength && new $ArrayBuffer(0).slice; var $abSlice = !!abSlice && callBind(abSlice); /** @type {import('.')} */ module.exports = $byteLength || $abSlice ? function isArrayBuffer(obj) { if (!obj || typeof obj !== 'object') { return false; } try { if ($byteLength) { // @ts-expect-error no idea why TS can't handle the overload $byteLength(obj); } else { // @ts-expect-error TS chooses not to type-narrow inside a closure $abSlice(obj, 0); } return true; } catch (e) { return false; } } : $ArrayBuffer // in node 0.8, ArrayBuffers have no prototype or own methods, but also no Symbol.toStringTag ? function isArrayBuffer(obj) { return $toString(obj) === '[object ArrayBuffer]'; } : function isArrayBuffer(obj) { // eslint-disable-line no-unused-vars return false; };
Close