Created
July 14, 2020 21:28
-
-
Save bbriggs/108c0dd1a0c0cb4f0e5ae89c68f48640 to your computer and use it in GitHub Desktop.
Ansible task for CVE-2020-1350 mitigation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- name: Mitigate CVE-2020-1350 | |
hosts: all | |
tasks: | |
- name: Fix registry key to mitigate CVE-2020-1350 | |
win_regedit: | |
path: HKLM:\SYSTEM\CurrentControlSet\Services\DNS\Parameters | |
name: TcpReceivePacketSize | |
data: 0xFF00 | |
type: dword |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment