function fred_report_info() {
var info={report_cat : "NTUSER",
report_name : "Typed URLs",
report_author : "Gillen Daniel, Voncken Guy",
report_desc : "Dump typed URLs",
fred_api : 2,
hive : "NTUSER"
};
return info;
}
function IsValid(val) {
if(typeof val !== 'undefined') return true;
else return false;
}
function GetUrlTimestamp (url_id) {
ret="Unknown";
var typed_urls_time=GetRegistryKeys("\\Software\\Microsoft\\Internet Explorer\\TypedURLsTime");
if(IsValid(typed_urls_time)) {
for(var i=0;i ");
println(" ");
println("
");
println(" ");
}
println(" Last added URL ");
for(var i=0;i",ts," ");
println(" ",RegistryKeyValueToString(url.value,url.type)," ");
println("
"); println(" The list of typed urls is empty."); println("
"); } } else { println(""); println(" This registry hive does not contain a list of typed urls!"); println("
"); } }