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 : 18.188.73.229
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
axios /
lib /
helpers /
Delete
Unzip
Name
Size
Permission
Date
Action
README.md
351
B
-rw-rw-r--
2022-08-30 11:49
bind.js
256
B
-rw-rw-r--
2022-08-30 11:49
buildURL.js
1.61
KB
-rw-rw-r--
2022-08-30 11:49
combineURLs.js
380
B
-rw-rw-r--
2022-08-30 11:49
cookies.js
1.4
KB
-rw-rw-r--
2022-08-30 11:49
deprecatedMethod.js
727
B
-rw-rw-r--
2022-08-30 11:49
isAbsoluteURL.js
563
B
-rw-rw-r--
2022-08-30 11:49
isAxiosError.js
343
B
-rw-rw-r--
2022-08-30 11:49
isURLSameOrigin.js
2.25
KB
-rw-rw-r--
2022-08-30 11:49
normalizeHeaderName.js
357
B
-rw-rw-r--
2022-08-30 11:49
parseHeaders.js
1.36
KB
-rw-rw-r--
2022-08-30 11:49
spread.js
564
B
-rw-rw-r--
2022-08-30 11:49
validator.js
2.73
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
'use strict'; var utils = require('./../utils'); function encode(val) { return encodeURIComponent(val). replace(/%3A/gi, ':'). replace(/%24/g, '$'). replace(/%2C/gi, ','). replace(/%20/g, '+'). replace(/%5B/gi, '['). replace(/%5D/gi, ']'); } /** * Build a URL by appending params to the end * * @param {string} url The base of the url (e.g., http://www.google.com) * @param {object} [params] The params to be appended * @returns {string} The formatted url */ module.exports = function buildURL(url, params, paramsSerializer) { /*eslint no-param-reassign:0*/ if (!params) { return url; } var serializedParams; if (paramsSerializer) { serializedParams = paramsSerializer(params); } else if (utils.isURLSearchParams(params)) { serializedParams = params.toString(); } else { var parts = []; utils.forEach(params, function serialize(val, key) { if (val === null || typeof val === 'undefined') { return; } if (utils.isArray(val)) { key = key + '[]'; } else { val = [val]; } utils.forEach(val, function parseValue(v) { if (utils.isDate(v)) { v = v.toISOString(); } else if (utils.isObject(v)) { v = JSON.stringify(v); } parts.push(encode(key) + '=' + encode(v)); }); }); serializedParams = parts.join('&'); } if (serializedParams) { var hashmarkIndex = url.indexOf('#'); if (hashmarkIndex !== -1) { url = url.slice(0, hashmarkIndex); } url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams; } return url; };