Linux vps-4302913.novaexata.com.br 3.10.0-1160.119.1.el7.tuxcare.els19.x86_64 #1 SMP Mon Mar 31 17:29:00 UTC 2025 x86_64
Apache
: 162.214.88.42 | : 216.73.216.99
166 Domain
7.3.33
wwnova
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
wwnova /
public_html /
atestes /
promocoes /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
bootbox5.1
[ DIR ]
drwxr-xr-x
chosen
[ DIR ]
drwxr-xr-x
counterup
[ DIR ]
drwxr-xr-x
easing
[ DIR ]
drwxr-xr-x
jquery
[ DIR ]
drwxr-xr-x
lightbox
[ DIR ]
drwxr-xr-x
owlcarousel
[ DIR ]
drwxr-xr-x
popper
[ DIR ]
drwxr-xr-x
typed
[ DIR ]
drwxr-xr-x
.htaccess
127
B
-r--r--r--
funcoesDev.js
4.07
KB
-rw-r--r--
jquery.mask.js
18.77
KB
-rw-r--r--
main.js
3.45
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : funcoesDev.js
$(".maskCPF").mask("000.000.000-00"); $(".maskCNPJ").mask("00.000.000/0000-00"); var config = { '.chosen-select' : {search_contains:true}, '.chosen-select-deselect' : {allow_single_deselect:true}, '.chosen-select-no-single' : {disable_search_threshold:10}, '.chosen-select-no-results': {no_results_text:'Sem registros!'}, '.chosen-select-width' : {width:"95%"} } function LoadPage(onde,qual){$(onde).load(qual, function(){ $(onde).slideDown();});} // Limpa valores do formulário de cep. function limpa_formulario_cep() { $("#rua").val("");$("#bairro").val("");$("#cidade").val("");$("#uf").val("");} function trimForm(formid){ //http://instantresponse.blogspot.com/2015/01/jquery-trim-form-fields-before.html $("#"+formid).find('input:text').each(function(){ $(this).val($.trim($(this).val())); }); } function cpfLimpo(cpf){var valor = cpf;valor = valor.replace(/\./g, '');valor = valor.replace(/\-/g, '');return valor; } function cnpjLimpo(cnpj){var valor = cnpj;valor = valor.replace(/\./g, '');valor = valor.replace(/\-/g, '');valor = valor.replace(/\//g, '');return valor;} function validarCNPJ(cnpj) { cnpj = cnpj.replace(/[^\d]+/g,''); if(cnpj == '') return false; if (cnpj.length != 14) return false; /* Elimina CNPJs invalidos conhecidos*/ if (cnpj == "00000000000000" || cnpj == "11111111111111" || cnpj == "22222222222222" || cnpj == "33333333333333" || cnpj == "44444444444444" || cnpj == "55555555555555" || cnpj == "66666666666666" || cnpj == "77777777777777" || cnpj == "88888888888888" || cnpj == "99999999999999") return false; /* Valida DVs*/ tamanho = cnpj.length - 2 numeros = cnpj.substring(0,tamanho); digitos = cnpj.substring(tamanho); soma = 0; pos = tamanho - 7; for (i = tamanho; i >= 1; i--) { soma += numeros.charAt(tamanho - i) * pos--; if (pos < 2) pos = 9; } resultado = soma % 11 < 2 ? 0 : 11 - soma % 11; if (resultado != digitos.charAt(0)) return false; tamanho = tamanho + 1; numeros = cnpj.substring(0,tamanho); soma = 0; pos = tamanho - 7; for (i = tamanho; i >= 1; i--) { soma += numeros.charAt(tamanho - i) * pos--; if (pos < 2) pos = 9; } resultado = soma % 11 < 2 ? 0 : 11 - soma % 11; if (resultado != digitos.charAt(1)) return false; return true; } function validaCPFjs(cpf){ var numeros, digitos, soma, i, resultado, digitos_iguais; digitos_iguais = 1; cpf=cpfLimpo(cpf); if (cpf.length != 11) { return false; } for (i = 0; i < cpf.length - 1; i++) if (cpf.charAt(i) != cpf.charAt(i + 1)) { digitos_iguais = 0; break; } if (!digitos_iguais) { numeros = cpf.substring(0,9); digitos = cpf.substring(9); soma = 0; for (i = 10; i > 1; i--) soma += numeros.charAt(10 - i) * i; resultado = soma % 11 < 2 ? 0 : 11 - soma % 11; if (resultado != digitos.charAt(0)) { return false; } numeros = cpf.substring(0,10); soma = 0; for (i = 11; i > 1; i--) soma += numeros.charAt(11 - i) * i; resultado = soma % 11 < 2 ? 0 : 11 - soma % 11; if (resultado != digitos.charAt(1)) { return false; } return true; } else { return false; } } /*https://pt.stackoverflow.com/questions/259082/tratar-acentua%C3%A7%C3%A3o-com-jquery*/ function limpaAcentos(v){ var c='áàãâäéèêëíìîïóòõôöúùûüçÁÀÃÂÄÉÈÊËÍÌÎÏÓÒÕÖÔÚÙÛÜÇ'; var s='aaaaaeeeeiiiiooooouuuucAAAAAEEEEIIIIOOOOOUUUUC'; var n = '';for(var x=0;x<v.length;x++){c.search(v.substr(x,1))>=0 ?n+=s.substr(c.search(v.substr(x,1)),1) :n+=v.substr(x,1);}return n;} function retira_acentos(palavra) { com_acento = 'áàãâäéèêëíìîïóòõôöúùûüçÁÀÃÂÄÉÈÊËÍÌÎÏÓÒÕÖÔÚÙÛÜÇ'; sem_acento = 'aaaaaeeeeiiiiooooouuuucAAAAAEEEEIIIIOOOOOUUUUC'; nova=''; for(i=0;i<palavra.length;i++) { if (com_acento.search(palavra.substr(i,1))>=0) { nova+=sem_acento.substr(com_acento.search(palavra.substr(i,1)),1); } else { nova+=palavra.substr(i,1); } } return nova; } function converteMoedaFloat(valor){ if(valor === ""){ valor = 0; } else{ valor = valor.replace(".",""); valor = valor.replace(",","."); valor = parseFloat(valor); } return valor; }
Close