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 : index.ts
import { Readable } from 'stream'; import { Dirent, FileSystemAdapter } from '@nodelib/fs.scandir'; import AsyncProvider, { AsyncCallback } from './providers/async'; import StreamProvider from './providers/stream'; import SyncProvider from './providers/sync'; import Settings, { DeepFilterFunction, EntryFilterFunction, ErrorFilterFunction, Options } from './settings'; import { Entry } from './types'; function walk(directory: string, callback: AsyncCallback): void; function walk(directory: string, optionsOrSettings: Options | Settings, callback: AsyncCallback): void; function walk(directory: string, optionsOrSettingsOrCallback: Options | Settings | AsyncCallback, callback?: AsyncCallback): void { if (typeof optionsOrSettingsOrCallback === 'function') { return new AsyncProvider(directory, getSettings()).read(optionsOrSettingsOrCallback); } new AsyncProvider(directory, getSettings(optionsOrSettingsOrCallback)).read(callback as AsyncCallback); } // https://github.com/typescript-eslint/typescript-eslint/issues/60 // eslint-disable-next-line no-redeclare declare namespace walk { function __promisify__(directory: string, optionsOrSettings?: Options | Settings): Promise<Entry[]>; } function walkSync(directory: string, optionsOrSettings?: Options | Settings): Entry[] { const settings = getSettings(optionsOrSettings); const provider = new SyncProvider(directory, settings); return provider.read(); } function walkStream(directory: string, optionsOrSettings?: Options | Settings): Readable { const settings = getSettings(optionsOrSettings); const provider = new StreamProvider(directory, settings); return provider.read(); } function getSettings(settingsOrOptions: Settings | Options = {}): Settings { if (settingsOrOptions instanceof Settings) { return settingsOrOptions; } return new Settings(settingsOrOptions); } export { walk, walkSync, walkStream, Settings, AsyncCallback, Dirent, Entry, FileSystemAdapter, Options, DeepFilterFunction, EntryFilterFunction, ErrorFilterFunction };
Close