mitigation script by disabling ipv6 of all interfaces# CVE-2024-38063
mitigation script by disabling ipv6 of all interfaces
# HOW TO
## Import the script like a module on a elevated Powershell (run as admin)
`. .\CVE-2024-38063`
## Use the functions
### Show-IPV6EnabledAdapters
Show all adapters that have IPV6 enabled!
```powershell
PS C:\users\public> Show-IPV6enabledAdapters
```
### Disable-IPV6Adapter
Disable IPv6 on a specific adapter!
**Atention** to the name of adapters that may have spaces when refer to it!!!
```powershell
PS C:\users\public> Disable-IPV6Adapter -AdapterName "Ethernet 2"
```
### Enable-IPV6Adapter
Enable IPv6 on a specific adapter!
**Atention** to the name of adapters that may have spaces when refer to it!!!
```powershell
PS C:\users\public> Enable-IPV6Adapter -AdapterName "Ethernet 2"
```
### Disable-IPV6AllAdapters
Disable IPv6 on all adapters!
```powershell
PS C:\users\public> Disable-IPV6AllAdapter
```
## Example

[4.0K] /data/pocs/a4d36c1a4f7cf4ba78090f213cc2ad0945b5cabf
├── [2.3K] CVE-2024-38063.ps1
└── [1006] README.md
0 directories, 2 files