Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[False Positive][False Negative] Outdated/Banned SSL/TLS protocols (#649
) * [False Positive][False Negative] Outdated/Banned SSL/TLS protocols ## Rule ID DS169125 Do not use outdated SSL/TLS protocols DS169126 An Outdated or Banned SSL/TLS Protocol is Used ## What the rule matched DS169125 * TLSv1.2 * TLSv1.3 DS169126 * TLSv12 * TLSv1.2 * TLSv13 * TLSv1.3 ## Why should this not be matched? https://github.com/microsoft/DevSkim/blob/v1.0.33/guidance/DS169126.md says: > Use TLSv1.3 if possible or TLSv1.2 if 1.3 cannot be used. ## What the rule did not match (false negative) DS169125 * TLSv1_0 * TLSv11 * TLSv1_1 ## Why should this be matched? https://github.com/microsoft/DevSkim/blob/v1.0.33/guidance/DS169126.md says: >TLSv1 - Weak, strongly consider disabling unless absolutely required. >TLSv1.1 - Weak, strongly consider disabling unless absolutely required. It already matches TLSv10 and TLSv1.0, therefore it should also match TLSv1_0. It already matches TLSv1.1, therefore it should also match TLSv11 and TLSv1_1. * Update Changelog.md --------- Co-authored-by: Gabe Stocco <[email protected]>
- Loading branch information