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.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
uuid /
dist /
esm-browser /
Delete
Unzip
Name
Size
Permission
Date
Action
index.js
412
B
-rw-r--r--
2023-08-14 04:33
md5.js
6.67
KB
-rw-r--r--
2023-08-14 04:33
nil.js
54
B
-rw-r--r--
2023-08-14 04:33
parse.js
1.08
KB
-rw-r--r--
2023-08-14 04:33
regex.js
133
B
-rw-r--r--
2023-08-14 04:33
rng.js
1.01
KB
-rw-r--r--
2023-08-14 04:33
sha1.js
2.41
KB
-rw-r--r--
2023-08-14 04:33
stringify.js
1.43
KB
-rw-r--r--
2023-08-14 04:33
v1.js
3.24
KB
-rw-r--r--
2023-08-14 04:33
v3.js
105
B
-rw-r--r--
2023-08-14 04:33
v35.js
1.62
KB
-rw-r--r--
2023-08-14 04:33
v4.js
543
B
-rw-r--r--
2023-08-14 04:33
v5.js
108
B
-rw-r--r--
2023-08-14 04:33
validate.js
139
B
-rw-r--r--
2023-08-14 04:33
version.js
197
B
-rw-r--r--
2023-08-14 04:33
Save
Rename
// Unique ID creation requires a high quality random # generator. In the browser we therefore // require the crypto API and do not support built-in fallback to lower quality random number // generators (like Math.random()). var getRandomValues; var rnds8 = new Uint8Array(16); export default function rng() { // lazy load so that environments that need to polyfill have a chance to do so if (!getRandomValues) { // getRandomValues needs to be invoked in a context where "this" is a Crypto implementation. Also, // find the complete implementation of crypto (msCrypto) on IE11. getRandomValues = typeof crypto !== 'undefined' && crypto.getRandomValues && crypto.getRandomValues.bind(crypto) || typeof msCrypto !== 'undefined' && typeof msCrypto.getRandomValues === 'function' && msCrypto.getRandomValues.bind(msCrypto); if (!getRandomValues) { throw new Error('crypto.getRandomValues() not supported. See https://github.com/uuidjs/uuid#getrandomvalues-not-supported'); } } return getRandomValues(rnds8); }