| Server IP : 23.111.136.34 / Your IP : 216.73.216.136 Web Server : Apache System : Linux servidor.eurohost.com.br 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64 User : meusitei ( 1072) PHP Version : 5.6.40 Disable Function : show_source, system, shell_exec, passthru, proc_open MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/meusitei/public_html/central/assets/js/whmcs/ |
Upload File : |
/**
* General utilities module
*
* @copyright Copyright (c) WHMCS Limited 2005-2017
* @license http://www.whmcs.com/license/ WHMCS Eula
*/
(function(module) {
if (!WHMCS.hasModule('utils')) {
WHMCS.loadModule('utils', module);
}
})(
function () {
/**
* Not crypto strong; server-side must discard for
* something with more entropy; the value is sufficient
* for strong client-side validation check
*/
this.simpleRNG = function () {
var chars = './$_-#!,^*()|';
var r = 0;
for (var i = 0; r < 3; i++) {
r += Math.floor((Math.random() * 10) / 2);
}
r = Math.floor(r);
var s = '';
for (var x = 0; x < r; x++) {
v = (Math.random() + 1).toString(24).split('.')[1];
if ((Math.random()) > 0.5) {
s += btoa(v).substr(0,4)
} else {
s += v
}
if ((Math.random()) > 0.5) {
s += chars.substr(
Math.floor(Math.random() * 13),
1
);
}
}
return s;
};
return this;
});