Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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 /
whatwg-url /
lib /
[ HOME SHELL ]
Name
Size
Permission
Action
URL-impl.js
4.34
KB
-rw-r--r--
URL.js
11.64
KB
-rw-r--r--
URLSearchParams-impl.js
2.7
KB
-rw-r--r--
URLSearchParams.js
13.77
KB
-rw-r--r--
encoding.js
328
B
-rw-r--r--
infra.js
518
B
-rw-r--r--
percent-encoding.js
4.77
KB
-rw-r--r--
url-state-machine.js
30.24
KB
-rw-r--r--
urlencoded.js
2.7
KB
-rw-r--r--
utils.js
2.9
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : infra.js
"use strict"; // Note that we take code points as JS numbers, not JS strings. function isASCIIDigit(c) { return c >= 0x30 && c <= 0x39; } function isASCIIAlpha(c) { return (c >= 0x41 && c <= 0x5A) || (c >= 0x61 && c <= 0x7A); } function isASCIIAlphanumeric(c) { return isASCIIAlpha(c) || isASCIIDigit(c); } function isASCIIHex(c) { return isASCIIDigit(c) || (c >= 0x41 && c <= 0x46) || (c >= 0x61 && c <= 0x66); } module.exports = { isASCIIDigit, isASCIIAlpha, isASCIIAlphanumeric, isASCIIHex };
Close