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 /
@nodelib /
fs.macchiato /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
dirent.spec.ts
1.43
KB
-rw-r--r--
dirent.ts
856
B
-rw-r--r--
index.spec.ts
369
B
-rw-r--r--
index.ts
89
B
-rw-r--r--
stats.spec.ts
4.15
KB
-rw-r--r--
stats.ts
2.18
KB
-rw-r--r--
types.ts
448
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : dirent.ts
import * as fs from 'fs'; import { PrepareOptionsFromClass } from './types'; export default class Dirent implements fs.Dirent { public readonly name: string = this._options.name ?? 'unknown.txt'; constructor(private readonly _options: PrepareOptionsFromClass<fs.Dirent> = {}) { } public isFile(): boolean { return this._options.isFile ?? true; } public isDirectory(): boolean { return this._options.isDirectory ?? false; } public isBlockDevice(): boolean { return this._options.isBlockDevice ?? false; } public isCharacterDevice(): boolean { return this._options.isCharacterDevice ?? false; } public isSymbolicLink(): boolean { return this._options.isSymbolicLink ?? false; } public isFIFO(): boolean { return this._options.isFIFO ?? false; } public isSocket(): boolean { return this._options.isSocket ?? false; } }
Close