pdqcom / PowerShell-Scanners

A community repository of PowerShell Scanners for PDQ Inventory.
MIT License
179 stars 74 forks source link

TLS1.1Server path variable #89

Closed Urfried closed 2 years ago

Urfried commented 2 years ago

There is a typo in TLSv1.1 Path variable (line 121 + 125), in Cipher suite detection script. The path is set with $TLSv1_1ServerEnabled. Change it to $TLSv1_1Server and it works.

Actually. Referring to Cipher suite detection is wrong. This script detects Transport Layer protocol.

Collecting cipher suites can be done with a very simple one liner; (Get-TlsCipherSuite).Name

crimsy commented 2 years ago

I found this and corrected it on my local install. It works. I am surprised this has not been committed yet.

AndrewPla commented 2 years ago

We have merged #93 which addresses this.