Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
@nodelib /
fs.walk /
out /
Delete
Unzip
Name
Size
Permission
Date
Action
providers
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
readers
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
types
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
index.d.ts
1019
B
-rw-r--r--
2024-03-21 05:18
index.js
1.36
KB
-rw-r--r--
2024-03-21 05:18
settings.d.ts
1.15
KB
-rw-r--r--
2024-03-21 05:18
settings.js
1.22
KB
-rw-r--r--
2024-03-21 05:18
Save
Rename
/// <reference types="node" /> import type { Readable } from 'stream'; import type { Dirent, FileSystemAdapter } from '@nodelib/fs.scandir'; import { AsyncCallback } from './providers/async'; import Settings, { DeepFilterFunction, EntryFilterFunction, ErrorFilterFunction, Options } from './settings'; import type { Entry } from './types'; declare function walk(directory: string, callback: AsyncCallback): void; declare function walk(directory: string, optionsOrSettings: Options | Settings, callback: AsyncCallback): void; declare namespace walk { function __promisify__(directory: string, optionsOrSettings?: Options | Settings): Promise<Entry[]>; } declare function walkSync(directory: string, optionsOrSettings?: Options | Settings): Entry[]; declare function walkStream(directory: string, optionsOrSettings?: Options | Settings): Readable; export { walk, walkSync, walkStream, Settings, AsyncCallback, Dirent, Entry, FileSystemAdapter, Options, DeepFilterFunction, EntryFilterFunction, ErrorFilterFunction };