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.217.230.80
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 /
enhanced-resolve /
Delete
Unzip
Name
Size
Permission
Date
Action
lib
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
LICENSE
1.05
KB
-rw-rw-r--
2022-08-30 11:49
README.md
9.79
KB
-rw-rw-r--
2022-08-30 11:49
package.json
2.42
KB
-rw-rw-r--
2022-08-30 11:49
types.d.ts
11.3
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/* * This file was automatically generated. * DO NOT MODIFY BY HAND. * Run `yarn special-lint-fix` to update */ import { AsyncSeriesBailHook, AsyncSeriesHook, SyncHook } from "tapable"; declare interface AliasOption { alias: string | false | string[]; name: string; onlyModule?: boolean; } type AliasOptionNewRequest = string | false | string[]; declare interface AliasOptions { [index: string]: AliasOptionNewRequest; } declare interface BaseResolveRequest { path: string | false; descriptionFilePath?: string; descriptionFileRoot?: string; descriptionFileData?: object; relativePath?: string; ignoreSymlinks?: boolean; fullySpecified?: boolean; } declare class CachedInputFileSystem { constructor(fileSystem?: any, duration?: any); fileSystem: any; lstat?: { (arg0: string, arg1: FileSystemCallback<FileSystemStats>): void; ( arg0: string, arg1: object, arg2: FileSystemCallback<string | Buffer> ): void; }; lstatSync?: (arg0: string, arg1?: object) => FileSystemStats; stat: { (arg0: string, arg1: FileSystemCallback<FileSystemStats>): void; ( arg0: string, arg1: object, arg2: FileSystemCallback<string | Buffer> ): void; }; statSync: (arg0: string, arg1?: object) => FileSystemStats; readdir: { ( arg0: string, arg1: FileSystemCallback<(string | Buffer)[] | FileSystemDirent[]> ): void; ( arg0: string, arg1: object, arg2: FileSystemCallback<(string | Buffer)[] | FileSystemDirent[]> ): void; }; readdirSync: ( arg0: string, arg1?: object ) => (string | Buffer)[] | FileSystemDirent[]; readFile: { (arg0: string, arg1: FileSystemCallback<string | Buffer>): void; ( arg0: string, arg1: object, arg2: FileSystemCallback<string | Buffer> ): void; }; readFileSync: (arg0: string, arg1?: object) => string | Buffer; readJson?: { (arg0: string, arg1: FileSystemCallback<object>): void; (arg0: string, arg1: object, arg2: FileSystemCallback<object>): void; }; readJsonSync?: (arg0: string, arg1?: object) => object; readlink: { (arg0: string, arg1: FileSystemCallback<string | Buffer>): void; ( arg0: string, arg1: object, arg2: FileSystemCallback<string | Buffer> ): void; }; readlinkSync: (arg0: string, arg1?: object) => string | Buffer; purge(what?: any): void; } declare class CloneBasenamePlugin { constructor(source?: any, target?: any); source: any; target: any; apply(resolver: Resolver): void; } declare interface FileSystem { readFile: { (arg0: string, arg1: FileSystemCallback<string | Buffer>): void; ( arg0: string, arg1: object, arg2: FileSystemCallback<string | Buffer> ): void; }; readdir: { ( arg0: string, arg1: FileSystemCallback<(string | Buffer)[] | FileSystemDirent[]> ): void; ( arg0: string, arg1: object, arg2: FileSystemCallback<(string | Buffer)[] | FileSystemDirent[]> ): void; }; readJson?: { (arg0: string, arg1: FileSystemCallback<object>): void; (arg0: string, arg1: object, arg2: FileSystemCallback<object>): void; }; readlink: { (arg0: string, arg1: FileSystemCallback<string | Buffer>): void; ( arg0: string, arg1: object, arg2: FileSystemCallback<string | Buffer> ): void; }; lstat?: { (arg0: string, arg1: FileSystemCallback<FileSystemStats>): void; ( arg0: string, arg1: object, arg2: FileSystemCallback<string | Buffer> ): void; }; stat: { (arg0: string, arg1: FileSystemCallback<FileSystemStats>): void; ( arg0: string, arg1: object, arg2: FileSystemCallback<string | Buffer> ): void; }; } declare interface FileSystemCallback<T> { (err?: null | (PossibleFileSystemError & Error), result?: T): any; } declare interface FileSystemDirent { name: string | Buffer; isDirectory: () => boolean; isFile: () => boolean; } declare interface FileSystemStats { isDirectory: () => boolean; isFile: () => boolean; } declare class LogInfoPlugin { constructor(source?: any); source: any; apply(resolver: Resolver): void; } declare interface ParsedIdentifier { request: string; query: string; fragment: string; directory: boolean; module: boolean; file: boolean; internal: boolean; } type Plugin = | { apply: (arg0: Resolver) => void } | ((this: Resolver, arg1: Resolver) => void); declare interface PnpApiImpl { resolveToUnqualified: (arg0: string, arg1: string, arg2: object) => string; } declare interface PossibleFileSystemError { code?: string; errno?: number; path?: string; syscall?: string; } /** * Resolve context */ declare interface ResolveContext { contextDependencies?: WriteOnlySet<string>; /** * files that was found on file system */ fileDependencies?: WriteOnlySet<string>; /** * dependencies that was not found on file system */ missingDependencies?: WriteOnlySet<string>; /** * set of hooks' calls. For instance, `resolve → parsedResolve → describedResolve`, */ stack?: Set<string>; /** * log function */ log?: (arg0: string) => void; /** * yield result, if provided plugins can return several results */ yield?: (arg0: ResolveRequest) => void; } declare interface ResolveOptions { alias: AliasOption[]; fallback: AliasOption[]; aliasFields: Set<string | string[]>; cachePredicate: (arg0: ResolveRequest) => boolean; cacheWithContext: boolean; /** * A list of exports field condition names. */ conditionNames: Set<string>; descriptionFiles: string[]; enforceExtension: boolean; exportsFields: Set<string | string[]>; importsFields: Set<string | string[]>; extensions: Set<string>; fileSystem: FileSystem; unsafeCache: false | object; symlinks: boolean; resolver?: Resolver; modules: (string | string[])[]; mainFields: { name: string[]; forceRelative: boolean }[]; mainFiles: Set<string>; plugins: Plugin[]; pnpApi: null | PnpApiImpl; roots: Set<string>; fullySpecified: boolean; resolveToContext: boolean; restrictions: Set<string | RegExp>; preferRelative: boolean; preferAbsolute: boolean; } type ResolveRequest = BaseResolveRequest & Partial<ParsedIdentifier>; declare abstract class Resolver { fileSystem: FileSystem; options: ResolveOptions; hooks: { resolveStep: SyncHook< [ AsyncSeriesBailHook< [ResolveRequest, ResolveContext], null | ResolveRequest >, ResolveRequest ] >; noResolve: SyncHook<[ResolveRequest, Error]>; resolve: AsyncSeriesBailHook< [ResolveRequest, ResolveContext], null | ResolveRequest >; result: AsyncSeriesHook<[ResolveRequest, ResolveContext]>; }; ensureHook( name: | string | AsyncSeriesBailHook< [ResolveRequest, ResolveContext], null | ResolveRequest > ): AsyncSeriesBailHook< [ResolveRequest, ResolveContext], null | ResolveRequest >; getHook( name: | string | AsyncSeriesBailHook< [ResolveRequest, ResolveContext], null | ResolveRequest > ): AsyncSeriesBailHook< [ResolveRequest, ResolveContext], null | ResolveRequest >; resolveSync(context: object, path: string, request: string): string | false; resolve( context: object, path: string, request: string, resolveContext: ResolveContext, callback: ( arg0: null | Error, arg1?: string | false, arg2?: ResolveRequest ) => void ): void; doResolve( hook?: any, request?: any, message?: any, resolveContext?: any, callback?: any ): any; parse(identifier: string): ParsedIdentifier; isModule(path?: any): boolean; isPrivate(path?: any): boolean; isDirectory(path: string): boolean; join(path?: any, request?: any): string; normalize(path?: any): string; } declare interface UserResolveOptions { /** * A list of module alias configurations or an object which maps key to value */ alias?: AliasOptions | AliasOption[]; /** * A list of module alias configurations or an object which maps key to value, applied only after modules option */ fallback?: AliasOptions | AliasOption[]; /** * A list of alias fields in description files */ aliasFields?: (string | string[])[]; /** * A function which decides whether a request should be cached or not. An object is passed with at least `path` and `request` properties. */ cachePredicate?: (arg0: ResolveRequest) => boolean; /** * Whether or not the unsafeCache should include request context as part of the cache key. */ cacheWithContext?: boolean; /** * A list of description files to read from */ descriptionFiles?: string[]; /** * A list of exports field condition names. */ conditionNames?: string[]; /** * Enforce that a extension from extensions must be used */ enforceExtension?: boolean; /** * A list of exports fields in description files */ exportsFields?: (string | string[])[]; /** * A list of imports fields in description files */ importsFields?: (string | string[])[]; /** * A list of extensions which should be tried for files */ extensions?: string[]; /** * The file system which should be used */ fileSystem: FileSystem; /** * Use this cache object to unsafely cache the successful requests */ unsafeCache?: boolean | object; /** * Resolve symlinks to their symlinked location */ symlinks?: boolean; /** * A prepared Resolver to which the plugins are attached */ resolver?: Resolver; /** * A list of directories to resolve modules from, can be absolute path or folder name */ modules?: string | string[]; /** * A list of main fields in description files */ mainFields?: ( | string | string[] | { name: string | string[]; forceRelative: boolean } )[]; /** * A list of main files in directories */ mainFiles?: string[]; /** * A list of additional resolve plugins which should be applied */ plugins?: Plugin[]; /** * A PnP API that should be used - null is "never", undefined is "auto" */ pnpApi?: null | PnpApiImpl; /** * A list of root paths */ roots?: string[]; /** * The request is already fully specified and no extensions or directories are resolved for it */ fullySpecified?: boolean; /** * Resolve to a context instead of a file */ resolveToContext?: boolean; /** * A list of resolve restrictions */ restrictions?: (string | RegExp)[]; /** * Use only the sync constraints of the file system calls */ useSyncFileSystemCalls?: boolean; /** * Prefer to resolve module requests as relative requests before falling back to modules */ preferRelative?: boolean; /** * Prefer to resolve server-relative urls as absolute paths before falling back to resolve in roots */ preferAbsolute?: boolean; } declare interface WriteOnlySet<T> { add: (T?: any) => void; } declare function exports( context?: any, path?: any, request?: any, resolveContext?: any, callback?: any ): void; declare namespace exports { export const sync: ( context?: any, path?: any, request?: any ) => string | false; export function create( options?: any ): ( context?: any, path?: any, request?: any, resolveContext?: any, callback?: any ) => void; export namespace create { export const sync: ( options?: any ) => (context?: any, path?: any, request?: any) => string | false; } export namespace ResolverFactory { export let createResolver: (options: UserResolveOptions) => Resolver; } export const forEachBail: ( array?: any, iterator?: any, callback?: any ) => any; export { CachedInputFileSystem, CloneBasenamePlugin, LogInfoPlugin, PnpApiImpl as PnpApi, Resolver, FileSystem, ResolveContext, ResolveRequest, Plugin, UserResolveOptions as ResolveOptions }; } export = exports;