## https://sploitus.com/exploit?id=032E056E-A495-5582-8650-86412BA09DA2
# 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
![image](https://github.com/user-attachments/assets/a0bd46e6-54a2-494b-b28b-29fff8ac33ae)