Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
@types /
pbkdf2 /
[ HOME SHELL ]
Name
Size
Permission
Action
index.d.ts
1.16
KB
-rw-r--r--
package.json
720
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
// Type definitions for pbkdf2 3.1 // Project: https://github.com/crypto-browserify/pbkdf2 // Definitions by: Timon Engelke <https://github.com/timonegk> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped /// <reference types="node" /> // No need to export this type TypedArray = | Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array; export function pbkdf2( password: string | Buffer | TypedArray | DataView, salt: string | Buffer | TypedArray | DataView, iterations: number, keylen: number, callback: (err: Error, derivedKey: Buffer) => void, ): void; export function pbkdf2( password: string | Buffer | TypedArray | DataView, salt: string | Buffer | TypedArray | DataView, iterations: number, keylen: number, digest: string, callback: (err: Error, derivedKey: Buffer) => void, ): void; export function pbkdf2Sync( password: string | Buffer | TypedArray | DataView, salt: string | Buffer | TypedArray | DataView, iterations: number, keylen: number, digest?: string, ): Buffer; export {};
Close