Advertisement
Guest User

Untitled

a guest
Mar 5th, 2018
736
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  1. Windows Registry Editor Version 5.00
  2.  
  3. Copy and paste this into a text file, rename it with the extension .reg, and import it; Only registry entries will be imported, the text is ignored.
  4.  
  5. Teredo in Windows is a transition technology that allows communication between two IP protocols “IPv4” and “IPv6.” The protocols are present on the internet but sometimes need a transition technology like Teredo to communicate. But unfortunately, Teredo can cause DNS leaks (in vpn).
  6. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\tunnel]
  7. "start"=dword:00000004
  8.  
  9. Avoid Security risks of IPv6, limit your protocal use to Hardened IPv4 as much as possible
  10. Disabled & Hardened TCPIP6 & Components
  11. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\TCPIP6]
  12. "start"=dword:00000004
  13.  
  14. Totally disabling TCPIp6 System Wide
  15. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\TCPIP6\Parameters]
  16. "DisabledComponents"=dword:000000ff
  17. "DisableIPSourceRouting"=dword:00000002
  18. "EnableICSIPv6"=dword:00000000
  19.  
  20. IPv6 Helper Service offers IPv6 connectivity over an IPv4 Network
  21. [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\iphlpsvc]
  22. "start"=dword:00000004
  23.  
  24. Disable Dhcpv6
  25. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels\Microsoft-Windows-Dhcpv6-Client/Admin]
  26. "Enabled"=dword:00000000
  27. [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WINEVT\Channels\Microsoft-Windows-Dhcpv6-Client/Operational]
  28. "Enabled"=dword:00000000
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement