Listing users with access to NetFrameworkConfigurationKey ACL

后端 未结 2 1615
南旧
南旧 2020-12-18 08:59

I have added some users to the Access Control List(ACL) for the RSA Key Container using “aspnet_regiis -pa \"NetFrameworkConfigura

2条回答
  •  暗喜
    暗喜 (楼主)
    2020-12-18 09:24

    Command prompt technique:

    1. Find the hex value (69 characters long) of your named key.

    certutil -key NetFrameworkConfigurationKey

    1. Use icacls to list users and permissions.

    icacls %ProgramData%\Microsoft\Crypto\RSA\MachineKeys\

    Where permissions are represented by:
    N = no access
    F = full access
    M = modify access
    RX = read and execute access
    R = read-only access
    W = write-only access
    D = delete access

提交回复
热议问题