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;iTyped urls"); // Iterate over all typed urls var typed_urls=GetRegistryKeys("\\Software\\Microsoft\\Internet Explorer\\TypedURLs"); if(IsValid(typed_urls)) { if(typed_urls.length!=0) { println("

"); println(" "); println(" "); for(var i=0;i"); println(" "); println(" "); println(" "); } println("
Last addedURL",ts,"",RegistryKeyValueToString(url.value,url.type),"
"); println("

"); } else { 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("

"); } }