Put this on twitter just posting it here so I can find it later.
You can use powershell to list all the certificates on a host
powershell -Command Get-ChildItem -Recurse Cert: > certs.txt
If you are searching for something specific you can pass to findstr
powershell -Command Get-ChildItem -Recurse Cert: | findstr -i Superfish
You can use powershell to list all the certificates on a host
powershell -Command Get-ChildItem -Recurse Cert: > certs.txt
If you are searching for something specific you can pass to findstr
powershell -Command Get-ChildItem -Recurse Cert: | findstr -i Superfish








