script add ipv6 disable

This commit is contained in:
silversword411 2021-04-15 11:34:35 -04:00
parent dfe2e94627
commit 945d8647bf
2 changed files with 18 additions and 0 deletions

View File

@ -460,6 +460,16 @@
"category": "TRMM (Win):Network", "category": "TRMM (Win):Network",
"default_timeout": "90" "default_timeout": "90"
}, },
{
"guid": "abe78170-7cf9-435b-9666-c5ef6c11a106",
"filename": "Win_Network_IPv6_Disable.ps1",
"submittedBy": "https://github.com/silversword411",
"name": "Network IPv6 - Disable",
"description": "Disable IPv6 on all adapters",
"shell": "powershell",
"category": "TRMM (Win):Network",
"default_timeout": "90"
},
{ {
"guid": "6ce5682a-49db-4c0b-9417-609cf905ac43", "guid": "6ce5682a-49db-4c0b-9417-609cf905ac43",
"filename": "Win_Win10_Change_Key_and_Activate.ps1", "filename": "Win_Win10_Change_Key_and_Activate.ps1",

View File

@ -0,0 +1,8 @@
#CVE-2020-16898 | Windows TCP/IP Remote Code Execution Vulnerability
#https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/CVE-2020-16898
#Disable IPv6 on All Adapers
Disable-NetAdapterBinding -Name "*" -ComponentID ms_tcpip6
#Confirm That all NIC's no longer have IPv6 Enabled
(Get-NetAdapterBinding -Name '*' -ComponentID ms_tcpip6).Enabled