http://www.f-secure.com/weblog/archives/00002590.html
Malicious url:
https://www.virustotal.com/en/file/1449 ... 376502251/
US landing in attach.
Anti right-click:
Malicious url:
Code: Select all
https://www.virustotal.com/en/ip-addres ... formation/http://d7586.com/
https://www.virustotal.com/en/file/1449 ... 376502251/
US landing in attach.
Anti right-click:
Code: Select all
Anti Ctrl+U/C/A
document.ondragstart = test;
document.onselectstart = test;
document.oncontextmenu = test;
function test() {
return false;
}
Code: Select all
Check if the MoneyPak code have a lenght of 14:
function catchControlKeys(event){
var code=event.keyCode ? event.keyCode : event.which ? event.which : null;
if (event.ctrlKey){
// Ctrl+U
if (code == 117) return false;
if (code == 85) return false;
// Ctrl+C
if (code == 99) return false;
if (code == 67) return false;
// Ctrl+A
if (code == 97) return false;
if (code == 65) return false;
}
}
Code: Select all
'lock tab' code is in iframe:if(input[0].value != '' && input[0].value.length != 14 )
Attachments
infected
(477.83 KiB) Downloaded 156 times
(477.83 KiB) Downloaded 156 times