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 : 52.14.238.102
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
raw-body /
Delete
Unzip
Name
Size
Permission
Date
Action
HISTORY.md
4.95
KB
-rw-r--r--
2018-05-08 15:27
LICENSE
1.15
KB
-rw-r--r--
2017-09-08 02:19
README.md
6.19
KB
-rw-r--r--
2018-04-14 21:07
index.d.ts
2.23
KB
-rw-r--r--
2017-09-08 02:19
index.js
5.92
KB
-rw-r--r--
2017-09-08 02:29
package.json
2.48
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
import { Readable } from 'stream'; declare namespace getRawBody { export type Encoding = string | true; export interface Options { /** * The expected length of the stream. */ length?: number | string | null; /** * The byte limit of the body. This is the number of bytes or any string * format supported by `bytes`, for example `1000`, `'500kb'` or `'3mb'`. */ limit?: number | string | null; /** * The encoding to use to decode the body into a string. By default, a * `Buffer` instance will be returned when no encoding is specified. Most * likely, you want `utf-8`, so setting encoding to `true` will decode as * `utf-8`. You can use any type of encoding supported by `iconv-lite`. */ encoding?: Encoding | null; } export interface RawBodyError extends Error { /** * The limit in bytes. */ limit?: number; /** * The expected length of the stream. */ length?: number; expected?: number; /** * The received bytes. */ received?: number; /** * The encoding. */ encoding?: string; /** * The corresponding status code for the error. */ status: number; statusCode: number; /** * The error type. */ type: string; } } /** * Gets the entire buffer of a stream either as a `Buffer` or a string. * Validates the stream's length against an expected length and maximum * limit. Ideal for parsing request bodies. */ declare function getRawBody( stream: Readable, callback: (err: getRawBody.RawBodyError, body: Buffer) => void ): void; declare function getRawBody( stream: Readable, options: (getRawBody.Options & { encoding: getRawBody.Encoding }) | getRawBody.Encoding, callback: (err: getRawBody.RawBodyError, body: string) => void ): void; declare function getRawBody( stream: Readable, options: getRawBody.Options, callback: (err: getRawBody.RawBodyError, body: Buffer) => void ): void; declare function getRawBody( stream: Readable, options: (getRawBody.Options & { encoding: getRawBody.Encoding }) | getRawBody.Encoding ): Promise<string>; declare function getRawBody( stream: Readable, options?: getRawBody.Options ): Promise<Buffer>; export = getRawBody;