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.scandir /
out /
Delete
Unzip
Name
Size
Permission
Date
Action
adapters
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
providers
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
types
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
utils
[ DIR ]
drwxr-xr-x
2024-07-10 10:56
constants.d.ts
118
B
-rw-r--r--
2024-03-21 05:18
constants.js
990
B
-rw-r--r--
2024-03-21 05:18
index.d.ts
855
B
-rw-r--r--
2024-03-21 05:18
index.js
1009
B
-rw-r--r--
2024-03-21 05:18
settings.d.ts
666
B
-rw-r--r--
2024-03-21 05:18
settings.js
1.05
KB
-rw-r--r--
2024-03-21 05:18
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Settings = exports.scandirSync = exports.scandir = void 0; const async = require("./providers/async"); const sync = require("./providers/sync"); const settings_1 = require("./settings"); exports.Settings = settings_1.default; function scandir(path, optionsOrSettingsOrCallback, callback) { if (typeof optionsOrSettingsOrCallback === 'function') { async.read(path, getSettings(), optionsOrSettingsOrCallback); return; } async.read(path, getSettings(optionsOrSettingsOrCallback), callback); } exports.scandir = scandir; function scandirSync(path, optionsOrSettings) { const settings = getSettings(optionsOrSettings); return sync.read(path, settings); } exports.scandirSync = scandirSync; function getSettings(settingsOrOptions = {}) { if (settingsOrOptions instanceof settings_1.default) { return settingsOrOptions; } return new settings_1.default(settingsOrOptions); }