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.39.197
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
iconv-lite /
lib /
Delete
Unzip
Name
Size
Permission
Date
Action
bom-handling.js
1.08
KB
-rw-r--r--
2017-04-21 08:22
extend-node.js
8.5
KB
-rw-r--r--
2018-05-07 22:11
index.d.ts
982
B
-rw-r--r--
2018-05-07 22:11
index.js
5
KB
-rw-r--r--
2018-04-07 04:23
streams.js
3.31
KB
-rw-r--r--
2017-04-21 08:22
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; }