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.119.103.13
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 /
core /
Delete
Unzip
Name
Size
Permission
Date
Action
Axios.js
4.15
KB
-rw-rw-r--
2022-08-30 11:49
InterceptorManager.js
1.33
KB
-rw-rw-r--
2022-08-30 11:49
README.md
399
B
-rw-rw-r--
2022-08-30 11:49
buildFullPath.js
695
B
-rw-rw-r--
2022-08-30 11:49
createError.js
625
B
-rw-rw-r--
2022-08-30 11:49
dispatchRequest.js
1.95
KB
-rw-rw-r--
2022-08-30 11:49
enhanceError.js
1.02
KB
-rw-rw-r--
2022-08-30 11:49
mergeConfig.js
2.83
KB
-rw-rw-r--
2022-08-30 11:49
settle.js
706
B
-rw-rw-r--
2022-08-30 11:49
transformData.js
639
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
'use strict'; var isAbsoluteURL = require('../helpers/isAbsoluteURL'); var combineURLs = require('../helpers/combineURLs'); /** * Creates a new URL by combining the baseURL with the requestedURL, * only when the requestedURL is not already an absolute URL. * If the requestURL is absolute, this function returns the requestedURL untouched. * * @param {string} baseURL The base URL * @param {string} requestedURL Absolute or relative URL to combine * @returns {string} The combined full path */ module.exports = function buildFullPath(baseURL, requestedURL) { if (baseURL && !isAbsoluteURL(requestedURL)) { return combineURLs(baseURL, requestedURL); } return requestedURL; };