How to export non-exportable private key from store

前端 未结 7 619
野的像风
野的像风 2021-01-29 20:51

I need to export private key from Windows store. What should I do if the key is marked as non-exportable? I know that it is possible, program jailbreak can export this key.

7条回答
  •  后悔当初
    2021-01-29 21:18

    You might need to uninstall antivirus (in my case I had to get rid of Avast).

    This makes sure that crypto::cng command will work. Otherwise it was giving me errors:

    mimikatz $ crypto::cng
    ERROR kull_m_patch_genericProcessOrServiceFromBuild ; OpenProcess (0x00000005)
    

    After removing Avast:

    mimikatz $ crypto::cng
    "KeyIso" service patched
    

    Magic. (:

    BTW

    Windows Defender is another program blocking the program to work, so you will need also to disable it for the time of using program at least.

提交回复
热议问题