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 : 3.141.40.192
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 /
socket.io-parser /
dist /
Delete
Unzip
Name
Size
Permission
Date
Action
binary.d.ts
673
B
-rw-rw-r--
2022-08-30 11:49
binary.js
2.62
KB
-rw-rw-r--
2022-08-30 11:49
index.d.ts
1.52
KB
-rw-rw-r--
2022-08-30 11:49
index.js
8.71
KB
-rw-rw-r--
2022-08-30 11:49
is-binary.d.ts
214
B
-rw-rw-r--
2022-08-30 11:49
is-binary.js
1.71
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
import Emitter = require("component-emitter"); /** * Protocol version. * * @public */ export declare const protocol: number; export declare enum PacketType { CONNECT = 0, DISCONNECT = 1, EVENT = 2, ACK = 3, CONNECT_ERROR = 4, BINARY_EVENT = 5, BINARY_ACK = 6 } export interface Packet { type: PacketType; nsp: string; data?: any; id?: number; attachments?: number; } /** * A socket.io Encoder instance */ export declare class Encoder { /** * Encode a packet as a single string if non-binary, or as a * buffer sequence, depending on packet type. * * @param {Object} obj - packet object */ encode(obj: Packet): any[]; /** * Encode packet as string. */ private encodeAsString; /** * Encode packet as 'buffer sequence' by removing blobs, and * deconstructing packet into object with placeholders and * a list of buffers. */ private encodeAsBinary; } /** * A socket.io Decoder instance * * @return {Object} decoder */ export declare class Decoder extends Emitter { private reconstructor; constructor(); /** * Decodes an encoded packet string into packet JSON. * * @param {String} obj - encoded packet */ add(obj: any): void; /** * Decode a packet String (JSON data) * * @param {String} str * @return {Object} packet */ private decodeString; private static isPayloadValid; /** * Deallocates a parser's resources */ destroy(): void; }