Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
uri-js /
dist /
esnext /
schemes /
[ HOME SHELL ]
Name
Size
Permission
Action
http.d.ts
108
B
-rw-r--r--
http.js
959
B
-rw-r--r--
http.js.map
841
B
-rw-r--r--
https.d.ts
108
B
-rw-r--r--
https.js
212
B
-rw-r--r--
https.js.map
312
B
-rw-r--r--
mailto.d.ts
359
B
-rw-r--r--
mailto.js
7.56
KB
-rw-r--r--
mailto.js.map
7.05
KB
-rw-r--r--
urn-uuid.d.ts
279
B
-rw-r--r--
urn-uuid.js
868
B
-rw-r--r--
urn-uuid.js.map
832
B
-rw-r--r--
urn.d.ts
324
B
-rw-r--r--
urn.js
2
KB
-rw-r--r--
urn.js.map
1.89
KB
-rw-r--r--
ws.d.ts
228
B
-rw-r--r--
ws.js
1.62
KB
-rw-r--r--
ws.js.map
1.58
KB
-rw-r--r--
wss.d.ts
108
B
-rw-r--r--
wss.js
198
B
-rw-r--r--
wss.js.map
307
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : urn.js
import { SCHEMES } from "../uri"; const NID$ = "(?:[0-9A-Za-z][0-9A-Za-z\\-]{1,31})"; const PCT_ENCODED$ = "(?:\\%[0-9A-Fa-f]{2})"; const TRANS$$ = "[0-9A-Za-z\\(\\)\\+\\,\\-\\.\\:\\=\\@\\;\\$\\_\\!\\*\\'\\/\\?\\#]"; const NSS$ = "(?:(?:" + PCT_ENCODED$ + "|" + TRANS$$ + ")+)"; const URN_SCHEME = new RegExp("^urn\\:(" + NID$ + ")$"); const URN_PATH = new RegExp("^(" + NID$ + ")\\:(" + NSS$ + ")$"); const URN_PARSE = /^([^\:]+)\:(.*)/; const URN_EXCLUDED = /[\x00-\x20\\\"\&\<\>\[\]\^\`\{\|\}\~\x7F-\xFF]/g; //RFC 2141 const handler = { scheme: "urn", parse: function (components, options) { const matches = components.path && components.path.match(URN_PARSE); let urnComponents = components; if (matches) { const scheme = options.scheme || urnComponents.scheme || "urn"; const nid = matches[1].toLowerCase(); const nss = matches[2]; const urnScheme = `${scheme}:${options.nid || nid}`; const schemeHandler = SCHEMES[urnScheme]; urnComponents.nid = nid; urnComponents.nss = nss; urnComponents.path = undefined; if (schemeHandler) { urnComponents = schemeHandler.parse(urnComponents, options); } } else { urnComponents.error = urnComponents.error || "URN can not be parsed."; } return urnComponents; }, serialize: function (urnComponents, options) { const scheme = options.scheme || urnComponents.scheme || "urn"; const nid = urnComponents.nid; const urnScheme = `${scheme}:${options.nid || nid}`; const schemeHandler = SCHEMES[urnScheme]; if (schemeHandler) { urnComponents = schemeHandler.serialize(urnComponents, options); } const uriComponents = urnComponents; const nss = urnComponents.nss; uriComponents.path = `${nid || options.nid}:${nss}`; return uriComponents; }, }; export default handler; //# sourceMappingURL=urn.js.map
Close