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.scandir /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
adapters
[ DIR ]
drwxr-xr-x
providers
[ DIR ]
drwxr-xr-x
types
[ DIR ]
drwxr-xr-x
utils
[ DIR ]
drwxr-xr-x
constants.ts
629
B
-rw-r--r--
index.spec.ts
2
KB
-rw-r--r--
index.ts
1.58
KB
-rw-r--r--
settings.spec.ts
940
B
-rw-r--r--
settings.ts
1.18
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : settings.ts
import * as path from 'path'; import * as fsStat from '@nodelib/fs.stat'; import * as fs from './adapters/fs'; export type Options = { followSymbolicLinks?: boolean; fs?: Partial<fs.FileSystemAdapter>; pathSegmentSeparator?: string; stats?: boolean; throwErrorOnBrokenSymbolicLink?: boolean; }; export default class Settings { public readonly followSymbolicLinks: boolean = this._getValue(this._options.followSymbolicLinks, false); public readonly fs: fs.FileSystemAdapter = fs.createFileSystemAdapter(this._options.fs); public readonly pathSegmentSeparator: string = this._getValue(this._options.pathSegmentSeparator, path.sep); public readonly stats: boolean = this._getValue(this._options.stats, false); public readonly throwErrorOnBrokenSymbolicLink: boolean = this._getValue(this._options.throwErrorOnBrokenSymbolicLink, true); public readonly fsStatSettings: fsStat.Settings = new fsStat.Settings({ followSymbolicLink: this.followSymbolicLinks, fs: this.fs, throwErrorOnBrokenSymbolicLink: this.throwErrorOnBrokenSymbolicLink }); constructor(private readonly _options: Options = {}) { } private _getValue<T>(option: T | undefined, value: T): T { return option ?? value; } }
Close