From: Nikos Skalkotos Date: Mon, 3 Jun 2013 15:16:04 +0000 (+0300) Subject: Populate the USERS metadata for windows images X-Git-Tag: 0.4.1~3^2~6 X-Git-Url: https://code.grnet.gr/git/snf-image-creator/commitdiff_plain/76b200cfe0572a263ceed27b13fad1ac52bb7503 Populate the USERS metadata for windows images For windows images check the appropriate registry keys to find out the system users --- diff --git a/image_creator/os_type/windows.py b/image_creator/os_type/windows.py index f1e6921..6ba200e 100644 --- a/image_creator/os_type/windows.py +++ b/image_creator/os_type/windows.py @@ -33,9 +33,40 @@ from image_creator.os_type import OSBase +import hivex +import tempfile +import os + class Windows(OSBase): """OS class for Windows""" - pass + def __init__(self, rootdev, ghandler, output): + super(Windows, self).__init__(rootdev, ghandler, output) + + self.meta["USERS"] = " ".join(self._get_users()) + + def _get_users(self): + samfd, sam = tempfile.mkstemp() + try: + systemroot = self.g.inspect_get_windows_systemroot(self.root) + path = "%s/system32/config/sam" % systemroot + path = self.g.case_sensitive_path(path) + self.g.download(path, sam) + + h = hivex.Hivex(sam) + + key = h.root() + + # Navigate to /SAM/Domains/Account/Users/Names + for child in ('SAM', 'Domains', 'Account', 'Users', 'Names'): + key = h.node_get_child(key, child) + + users = [h.node_name(x) for x in h.node_children(key)] + + finally: + os.unlink(sam) + + # Filter out the guest account + return filter(lambda x: x != "Guest", users) # vim: set sta sts=4 shiftwidth=4 sw=4 et ai :