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.219.197.162
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
unp_probe /
node_modules /
ajv /
lib /
compile /
Delete
Unzip
Name
Size
Permission
Date
Action
_rules.js
1.19
KB
-rw-r--r--
2017-12-16 20:21
async.js
2.58
KB
-rw-r--r--
2017-04-28 19:07
equal.js
60
B
-rw-r--r--
2017-06-16 22:01
error_classes.js
828
B
-rw-r--r--
2017-04-28 19:07
formats.js
11.46
KB
-rw-r--r--
2017-12-16 20:21
index.js
10.09
KB
-rw-r--r--
2017-12-16 20:21
resolve.js
7.74
KB
-rw-r--r--
2017-06-16 22:02
rules.js
1.74
KB
-rw-r--r--
2017-12-16 20:21
schema_obj.js
133
B
-rw-r--r--
2016-11-09 02:42
ucs2length.js
558
B
-rw-r--r--
2017-03-04 18:19
util.js
7.71
KB
-rw-r--r--
2017-07-06 23:05
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; };