Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F4943029
NTUSER_WindowsLiveAccounts.qs
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Size
1 KB
Referenced Files
None
Subscribers
None
NTUSER_WindowsLiveAccounts.qs
View Options
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
Details
Attached
Mime Type
text/html
Expires
Tue, Jun 3, 9:19 AM (12 h, 36 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1256617
Default Alt Text
NTUSER_WindowsLiveAccounts.qs (1 KB)
Attached To
Mode
rFRED fred
Attached
Detach File
Event Timeline
Log In to Comment