As there is no outward indication that the program is running, here is a list of symptoms that a user can use to determine if they are infected with the VMProtect Miner: You will see a process with a description of XMRig CPU Miner, or other description with XMRig in it, running in task manager …
XMRing CPU miner 더보기
[월:] 2018년 10월
javascript 특수문자 체크
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | function CheckID(str) { var reg2 = /[a-z]/g; var reg3 = /\d/; return (reg2.test(str) && reg3.test(str) ); //var reg1 = /^[a-z0-9]{6,12}$/; //영문 또는 숫자 4-8자리인지 //var reg2 = /[a-z]/g; //문자중에 영문이 있는지 //var reg3 = /[0-9]/g; //문자중에 숫자가 있는지 //var reg4= /[!@#$]/g; //문자중에 특수문자가 있는지 //return (reg1.test(str) && reg2.test(str) && reg3.test(str) ); } |
1 2 3 4 5 6 7 8 9 10 11 | if(!CheckID(frm.password.value)) { //alert("비밀번호는 영문소문자,특수문자(@#!$)와 숫자를 조합하여 생성해 주세요"); alert("비밀번호는 영문소문자와 숫자를 조합하여 생성해 주세요"); frm.password.value = ""; frm.passwordconf.value = ""; frm.password.focus(); return; } |