Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
html_old /
iNetty /
node_modules /
uuid /
dist /
Delete
Unzip
Name
Size
Permission
Date
Action
bin
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
esm-browser
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
esm-node
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
umd
[ DIR ]
drwxr-xr-x
2022-04-21 14:33
index.js
1.72
KB
-rw-r--r--
2022-04-21 14:30
md5-browser.js
6.85
KB
-rw-r--r--
2022-04-21 14:30
md5.js
550
B
-rw-r--r--
2022-04-21 14:30
nil.js
188
B
-rw-r--r--
2022-04-21 14:30
parse.js
1.35
KB
-rw-r--r--
2022-04-21 14:30
regex.js
267
B
-rw-r--r--
2022-04-21 14:30
rng-browser.js
1.1
KB
-rw-r--r--
2022-04-21 14:30
rng.js
549
B
-rw-r--r--
2022-04-21 14:30
sha1-browser.js
2.55
KB
-rw-r--r--
2022-04-21 14:30
sha1.js
553
B
-rw-r--r--
2022-04-21 14:30
stringify.js
1.63
KB
-rw-r--r--
2022-04-21 14:30
uuid-bin.js
1.98
KB
-rw-r--r--
2022-04-21 14:30
v1.js
3.53
KB
-rw-r--r--
2022-04-21 14:30
v3.js
414
B
-rw-r--r--
2022-04-21 14:30
v35.js
1.96
KB
-rw-r--r--
2022-04-21 14:30
v4.js
860
B
-rw-r--r--
2022-04-21 14:30
v5.js
417
B
-rw-r--r--
2022-04-21 14:30
validate.js
410
B
-rw-r--r--
2022-04-21 14:30
version.js
474
B
-rw-r--r--
2022-04-21 14:30
Save
Rename
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = rng; // 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()). let getRandomValues; const rnds8 = new Uint8Array(16); 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); }