Page MenuHomePhabricator

No OneTemporary

Size
1 KB
Referenced Files
None
Subscribers
None
diff --git a/trunk/report_templates/NTUSER_WindowsLiveAccounts.qs b/trunk/report_templates/NTUSER_WindowsLiveAccounts.qs
new file mode 100644
index 0000000..8345c36
--- /dev/null
+++ b/trunk/report_templates/NTUSER_WindowsLiveAccounts.qs
@@ -0,0 +1,22 @@
+println("<html>");
+println(" <head><title>Windows Live Accounts</title></head>");
+println(" <body style=\"font-size:12\">");
+println(" <h2>Windows live accounts</h2>");
+println(" <p style=\"font-size:12\">");
+println(" <table style=\"margin-left:20px; font-size:12\">");
+
+// Iterate over all contacts
+var accounts=GetRegistryKeys("\\Software\\Microsoft\\Windows Live Contacts\\Database");
+for(var i=0;i<accounts.length;i++) {
+ var val=GetRegistryKeyValue("\\Software\\Microsoft\\Windows Live Contacts\\Database",accounts[i]);
+ println(" <tr><td>",accounts[i],"</td><td>",RegistryKeyValueToString(val.value,val.type),"</td></tr>");
+}
+accounts=GetRegistryKeys("\\Software\\Microsoft\\Windows Live Contacts\\Me");
+for(var i=0;i<accounts.length;i++) {
+ var val=GetRegistryKeyValue("\\Software\\Microsoft\\Windows Live Contacts\\Me",accounts[i]);
+ println(" <tr><td>",accounts[i],"</td><td>",RegistryKeyValueToString(val.value,val.type),"</td></tr>");
+}
+
+println(" </table>");
+println(" </p>");
+println("</html>");

File Metadata

Mime Type
text/x-diff
Expires
Tue, Dec 24, 6:59 AM (1 d, 18 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1177069
Default Alt Text
(1 KB)

Event Timeline