Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 162.158.154.240
Cant Read [ /etc/named.conf ]
8.1.5
www-data
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 /
share /
javascript /
typedarray-to-buffer /
[ HOME SHELL ]
Name
Size
Permission
Action
index.js
1.08
KB
-rw-r--r--
index.min.js
439
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
/** * Convert a typed array to a Buffer without a copy * * Author: Feross Aboukhadijeh <feross@feross.org> <http://feross.org> * License: MIT * * `npm install typedarray-to-buffer` */ var isTypedArray = require('is-typedarray').strict module.exports = function (arr) { // If `Buffer` is the browser `buffer` module, and the browser supports typed arrays, // then avoid a copy. Otherwise, create a `Buffer` with a copy. var constructor = Buffer.TYPED_ARRAY_SUPPORT ? Buffer._augment : function (arr) { return new Buffer(arr) } if (arr instanceof Uint8Array) { return constructor(arr) } else if (arr instanceof ArrayBuffer) { return constructor(new Uint8Array(arr)) } else if (isTypedArray(arr)) { // Use the typed array's underlying ArrayBuffer to back new Buffer. This respects // the "view" on the ArrayBuffer, i.e. byteOffset and byteLength. No copy. return constructor(new Uint8Array(arr.buffer, arr.byteOffset, arr.byteLength)) } else { // Unsupported type, just pass it through to the `Buffer` constructor. return new Buffer(arr) } }
Close