Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.188.73.229
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
ajv /
lib /
compile /
Delete
Unzip
Name
Size
Permission
Date
Action
async.js
2.58
KB
-rw-rw-r--
2022-08-30 11:49
equal.js
176
B
-rw-rw-r--
2022-08-30 11:49
error_classes.js
828
B
-rw-rw-r--
2022-08-30 11:49
formats.js
11.8
KB
-rw-rw-r--
2022-08-30 11:49
index.js
10.44
KB
-rw-rw-r--
2022-08-30 11:49
resolve.js
7.66
KB
-rw-rw-r--
2022-08-30 11:49
rules.js
1.97
KB
-rw-rw-r--
2022-08-30 11:49
schema_obj.js
133
B
-rw-rw-r--
2022-08-30 11:49
ucs2length.js
558
B
-rw-rw-r--
2022-08-30 11:49
util.js
6.81
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
'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; };