Getting the Username from the HKEY_USERS values

前端 未结 9 1020
予麋鹿
予麋鹿 2021-01-30 04:08

Is there a way to connect between the values under HKEY_USERS to the actual username?
I saw some similar questions, but most (if not all) talks about C# code, and my need is

相关标签:
9条回答
  • 2021-01-30 04:55

    Done it, by a bit of creative programming,

    1. Enum the Keys in HKEY_USERS for those funny number keys...

    2. Enum the keys in HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\ProfileList\

    and you will find the same numbers.... Now in those keys look at the String value: ProfileImagePath = "SomeValue" where the values are either:

    "%systemroot%\system32\config\systemprofile"... not interested in this one... as its not a directory path...

    %SystemDrive%\Documents and Settings\LocalService - "Local Services" %SystemDrive%\Documents and Settings\NetworkService "NETWORK SERVICE"

    or

    %SystemDrive%\Documents and Settings\USER_NAME, which translates directly to the "USERNAME" values in most un-tampered systems, ie. where the user has not changed the their user name after a few weeks or altered the paths explicitly...

    0 讨论(0)
  • 2021-01-30 04:56

    You can use the command PSGetSid from Microsoft's SysInternals team.

    Download URL: http://technet.microsoft.com/en-gb/sysinternals/bb897417.aspx

    Usage:

    psgetsid [\\computer[,computer[,...] | @file] [-u username [-p password]]] [account|SID]
    -u  Specifies optional user name for login to remote computer.
    -p  Specifies optional password for user name. If you omit this you will be prompted to enter a hidden password.
    Account PsGetSid will report the SID for the specified user account rather than the computer.
    SID PsGetSid will report the account for the specified SID.
    Computer    Direct PsGetSid to perform the command on the remote computer or computers specified. If you omit the computer name PsGetSid runs the command on the local system, and if you specify a wildcard (\\*), PsGetSid runs the command on all computers in the current domain.
    @file   PsGetSid will execute the command on each of the computers listed in the file.
    

    Example:

    psgetsid S-1-5-21-583907252-682003330-839522115-63941
    

    NB:

    • Where the user is a domain/AD(LDAP) user, running this on any computer on the domain should give the same results.
    • Where the user is local to the machine the command should either be run on that machine, or you should specify the computer via the optional parameter.

    Update

    If you use PowerShell, the following may be useful for resolving any AD users listed:

    #create a drive for HKEY USERS:
    New-PSDrive -PSProvider Registry -Name HKU -Root HKEY_USERS -ErrorAction SilentlyContinue
    
    #List all immediate subfolders
    #where they're a folder (not a key)
    #and they's an SID (i.e. exclude .DEFAULT and SID_Classes entries)
    #return the SID
    #and return the related AD entry (should one exist).
    Get-ChildItem -Path 'HKU:\' `
    | ?{($_.PSIsContainer -eq $true) `
    -and ($_.PSChildName -match '^S-[\d-]+$')} `
    | select @{N='SID';E={$_.PSChildName}} `
    , @{N='Name';E={Get-ADUser $_.PSChildName | select -expand Name}}
    

    You could also refine the SID filter further to only pull back those SIDs which will resolve to an AD account if you wished; more on the SID structure here: https://technet.microsoft.com/en-us/library/cc962011.aspx

    0 讨论(0)
  • 2021-01-30 04:56

    The proper way to do this requires leveraging the SAM registry hive (on Windows 10, this requires NT AUTHORITY\SYSTEM privileges). The information you require is in the the key: HKEY_LOCAL_MACHINE\SAM\SAM\Domains\Account\Users\Names.

    Each subkey is the username, and the default value in each subkey is a binary integer. This value (converted to decimal) actually corresponds to the last chunk of the of the SID.

    Take "Administrator" for example, by default it is associated with the integer 0x1f4 (or 500).

    So, in theory you could take the build a list of SIDS based on the subkey names of the HKEY_LOCAL_MACHINE\Software\Microsoft\Windows NT\CurrentVersion\ProfileList key and/or HKEY_USERS key, parse out the the value after the last hyphen (-), and compare that to the info from the SAM hive.

    If you don't have NT AUTHORITY\SYSTEM privileges, the next best way to approach this may be to follow the other method described in the answers here.

    reference: https://docs.microsoft.com/en-us/openspecs/windows_protocols/ms-dtyp/81d92bba-d22b-4a8c-908a-554ab29148ab

    0 讨论(0)
提交回复
热议问题