分类: |
- 1
批处理提高计算机对DDOS的防御程度
作者:admin 日期:2011-03-04
@echo off
echo Windows Registry Editor Version 5.00 >temp.reg
echo.
echo [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters] >>temp.reg
echo "EnableICMPRedirect"=dword:00000000 >>temp.reg
echo "DeadGWDetectDefault"=dword:00000001 >>temp.reg
echo "DontAddDefaultGatewayDefault"=dword:00000000 >>temp.reg
echo "EnableSecurityFilters"=dword:00000001 >>temp.reg
echo "AllowUnqualifiedQuery"=dword:00000000 >>temp.reg
echo "PrioritizeRecordData"=dword:00000001 >>temp.reg
echo "ReservedPorts"=hex(7):31,00,34,00,33,00,33,00,2d,00,31,00,34,00,33,00,34,00,00,00,00,00 >>temp.reg
- 1