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 : options-to-url.js
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /* istanbul ignore file: deprecated */ const url_1 = require("url"); const keys = [ 'protocol', 'host', 'hostname', 'port', 'pathname', 'search' ]; exports.default = (origin, options) => { var _a, _b; if (options.path) { if (options.pathname) { throw new TypeError('Parameters `path` and `pathname` are mutually exclusive.'); } if (options.search) { throw new TypeError('Parameters `path` and `search` are mutually exclusive.'); } if (options.searchParams) { throw new TypeError('Parameters `path` and `searchParams` are mutually exclusive.'); } } if (options.search && options.searchParams) { throw new TypeError('Parameters `search` and `searchParams` are mutually exclusive.'); } if (!origin) { if (!options.protocol) { throw new TypeError('No URL protocol specified'); } origin = `${options.protocol}//${(_b = (_a = options.hostname) !== null && _a !== void 0 ? _a : options.host) !== null && _b !== void 0 ? _b : ''}`; } const url = new url_1.URL(origin); if (options.path) { const searchIndex = options.path.indexOf('?'); if (searchIndex === -1) { options.pathname = options.path; } else { options.pathname = options.path.slice(0, searchIndex); options.search = options.path.slice(searchIndex + 1); } delete options.path; } for (const key of keys) { if (options[key]) { url[key] = options[key].toString(); } } return url; };
Close