function fred_report_info() { var info={report_cat : "NTUSER", report_name : "Windows Live accounts", report_author : "Gillen Daniel", report_desc : "Dump Windows Live accounts", fred_api : 2, hive : "NTUSER" }; return info; } function IsValid(val) { if(typeof val !== 'undefined') return true; else return false; } function fred_report_html() { // println(""); // println(" Windows Live Accounts"); // println(" "); println("

Windows live accounts

"); // Iterate over all contacts var accounts=GetRegistryKeys("\\Software\\Microsoft\\Windows Live Contacts\\Database"); if(IsValid(accounts)) { println("

"); println(" "); for(var i=0;i"); } accounts=GetRegistryKeys("\\Software\\Microsoft\\Windows Live Contacts\\Me"); for(var i=0;i"); } println("
",accounts[i],"",RegistryKeyValueToString(val.value,val.type),"
",accounts[i],"",RegistryKeyValueToString(val.value,val.type),"
"); println("

"); } else { println("

"); println(" This registry hive does not contain a list of Windows Live Accounts!"); println("

"); } // println(""); }