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.219.197.162
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'); module.exports = ( utils.isStandardBrowserEnv() ? // Standard browser envs have full support of the APIs needed to test // whether the request URL is of the same origin as current location. (function standardBrowserEnv() { var msie = /(msie|trident)/i.test(navigator.userAgent); var urlParsingNode = document.createElement('a'); var originURL; /** * Parse a URL to discover it's components * * @param {String} url The URL to be parsed * @returns {Object} */ function resolveURL(url) { var href = url; if (msie) { // IE needs attribute set twice to normalize properties urlParsingNode.setAttribute('href', href); href = urlParsingNode.href; } urlParsingNode.setAttribute('href', href); // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils return { href: urlParsingNode.href, protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '', host: urlParsingNode.host, search: urlParsingNode.search ? urlParsingNode.search.replace(/^\?/, '') : '', hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '', hostname: urlParsingNode.hostname, port: urlParsingNode.port, pathname: (urlParsingNode.pathname.charAt(0) === '/') ? urlParsingNode.pathname : '/' + urlParsingNode.pathname }; } originURL = resolveURL(window.location.href); /** * Determine if a URL shares the same origin as the current location * * @param {String} requestURL The URL to test * @returns {boolean} True if URL shares the same origin, otherwise false */ return function isURLSameOrigin(requestURL) { var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL; return (parsed.protocol === originURL.protocol && parsed.host === originURL.host); }; })() : // Non standard browser envs (web workers, react-native) lack needed support. (function nonStandardBrowserEnv() { return function isURLSameOrigin() { return true; }; })() );