Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
CVE-2024-38063 — mitigation script by disabling ipv6 of all interfaces | Kitploit
Tools/GitHubGitHub/diegoalbuquerque/cve-2024-38063
General Purpose UtilitiesVulnerability AnalysisScripting & AutomationNetwork SecurityMisconfiguration
GitHubdiegoalbuquerque/cve-2024-38063

CVE-2024-38063

mitigation script by disabling ipv6 of all interfaces

View Repository
132262 years agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

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!

root@kitploit:~
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!!!

root@kitploit:~
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!!!

root@kitploit:~
PS C:\users\public> Enable-IPV6Adapter -AdapterName "Ethernet 2"

Disable-IPV6AllAdapters

Disable IPv6 on all adapters!

root@kitploit:~
PS C:\users\public> Disable-IPV6AllAdapter

Example

image

Download Tool