Linux ip-172-26-2-223 5.4.0-1018-aws #18-Ubuntu SMP Wed Jun 24 01:15:00 UTC 2020 x86_64
Apache
: 172.26.2.223 | : 3.147.63.135
Cant Read [ /etc/named.conf ]
8.1.13
www
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
BLACK DEFEND!
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