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.117.132.79
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 /
uuid /
dist /
esm-node /
Delete
Unzip
Name
Size
Permission
Date
Action
index.js
412
B
-rw-rw-r--
2022-08-30 11:49
md5.js
281
B
-rw-rw-r--
2022-08-30 11:49
nil.js
54
B
-rw-rw-r--
2022-08-30 11:49
parse.js
1.08
KB
-rw-rw-r--
2022-08-30 11:49
regex.js
133
B
-rw-rw-r--
2022-08-30 11:49
rng.js
323
B
-rw-rw-r--
2022-08-30 11:49
sha1.js
284
B
-rw-rw-r--
2022-08-30 11:49
stringify.js
1.36
KB
-rw-rw-r--
2022-08-30 11:49
v1.js
3.23
KB
-rw-rw-r--
2022-08-30 11:49
v3.js
107
B
-rw-rw-r--
2022-08-30 11:49
v35.js
1.62
KB
-rw-rw-r--
2022-08-30 11:49
v4.js
546
B
-rw-rw-r--
2022-08-30 11:49
v5.js
110
B
-rw-rw-r--
2022-08-30 11:49
validate.js
141
B
-rw-rw-r--
2022-08-30 11:49
version.js
200
B
-rw-rw-r--
2022-08-30 11:49
Save
Rename
import stringify from './stringify.js'; import parse from './parse.js'; function stringToBytes(str) { str = unescape(encodeURIComponent(str)); // UTF8 escape const bytes = []; for (let i = 0; i < str.length; ++i) { bytes.push(str.charCodeAt(i)); } return bytes; } export const DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8'; export const URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8'; export default function (name, version, hashfunc) { function generateUUID(value, namespace, buf, offset) { if (typeof value === 'string') { value = stringToBytes(value); } if (typeof namespace === 'string') { namespace = parse(namespace); } if (namespace.length !== 16) { throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)'); } // Compute hash of namespace and value, Per 4.3 // Future: Use spread syntax when supported on all platforms, e.g. `bytes = // hashfunc([...namespace, ... value])` let bytes = new Uint8Array(16 + value.length); bytes.set(namespace); bytes.set(value, namespace.length); bytes = hashfunc(bytes); bytes[6] = bytes[6] & 0x0f | version; bytes[8] = bytes[8] & 0x3f | 0x80; if (buf) { offset = offset || 0; for (let i = 0; i < 16; ++i) { buf[offset + i] = bytes[i]; } return buf; } return stringify(bytes); } // Function#name is not settable on some platforms (#270) try { generateUUID.name = name; // eslint-disable-next-line no-empty } catch (err) {} // For CommonJS default export support generateUUID.DNS = DNS; generateUUID.URL = URL; return generateUUID; }