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 /
fast-glob /
out /
readers /
Delete
Unzip
Name
Size
Permission
Date
Action
async.d.ts
473
B
-rw-r--r--
2024-03-21 05:18
async.js
1.18
KB
-rw-r--r--
2024-03-21 05:18
reader.d.ts
714
B
-rw-r--r--
2024-03-21 05:18
reader.js
1.04
KB
-rw-r--r--
2024-03-21 05:18
stream.d.ts
566
B
-rw-r--r--
2024-03-21 05:18
stream.js
1.83
KB
-rw-r--r--
2024-03-21 05:18
sync.d.ts
506
B
-rw-r--r--
2024-03-21 05:18
sync.js
1.3
KB
-rw-r--r--
2024-03-21 05:18
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const fsStat = require("@nodelib/fs.stat"); const fsWalk = require("@nodelib/fs.walk"); const reader_1 = require("./reader"); class ReaderSync extends reader_1.default { constructor() { super(...arguments); this._walkSync = fsWalk.walkSync; this._statSync = fsStat.statSync; } dynamic(root, options) { return this._walkSync(root, options); } static(patterns, options) { const entries = []; for (const pattern of patterns) { const filepath = this._getFullEntryPath(pattern); const entry = this._getEntry(filepath, pattern, options); if (entry === null || !options.entryFilter(entry)) { continue; } entries.push(entry); } return entries; } _getEntry(filepath, pattern, options) { try { const stats = this._getStat(filepath); return this._makeEntry(stats, pattern); } catch (error) { if (options.errorFilter(error)) { return null; } throw error; } } _getStat(filepath) { return this._statSync(filepath, this._fsStatSettings); } } exports.default = ReaderSync;