| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- using NetFwTypeLib;
- using SWRIS.Core;
- using System;
- namespace SWRIS.Extensions
- {
- public class FirewallHelper
- {
- /// <summary>
- /// 为WindowsDefender防火墙添加一条通信端口出站规则
- /// </summary>
- /// <param name="type">规则类型</param>
- /// <param name="ruleName">规则名称</param>
- /// <param name="appPath">应用程序完整路径</param>
- /// <param name="localAddresses">本地地址</param>
- /// <param name="localPorts">本地端口</param>
- /// <param name="remoteAddresses">远端地址</param>
- /// <param name="remotePorts">远端端口</param>
- public static bool CreateOutRule(NET_FW_IP_PROTOCOL_ type, string ruleName, string appPath, string localAddresses = null, string localPorts = null, string remoteAddresses = null, string remotePorts = null)
- {
- //创建防火墙策略类的实例
- INetFwPolicy2 policy2 = (INetFwPolicy2)Activator.CreateInstance(Type.GetTypeFromProgID("HNetCfg.FwPolicy2"));
- //检查是否有同名规则
- foreach (INetFwRule item in policy2.Rules)
- {
- if (item.Name == ruleName)
- {
- return true;
- }
- }
- //创建防火墙规则类的实例: 有关该接口的详细介绍:https://docs.microsoft.com/zh-cn/windows/win32/api/netfw/nn-netfw-inetfwrule
- INetFwRule rule = (INetFwRule)Activator.CreateInstance(Type.GetTypeFromProgID("HNetCfg.FwRule"));
- //为规则添加名称
- rule.Name = ruleName;
- //为规则添加描述
- rule.Description = "允许程序访问指定端口";
- //选择入站规则还是出站规则,IN为入站,OUT为出站
- rule.Direction = NET_FW_RULE_DIRECTION_.NET_FW_RULE_DIR_OUT;
- //为规则添加协议类型
- rule.Protocol = (int)type;
- //为规则添加应用程序(注意这里是应用程序的绝对路径名)
- rule.ApplicationName = appPath;
- //为规则添加本地IP地址
- if (!string.IsNullOrEmpty(localAddresses))
- {
- rule.LocalAddresses = localAddresses;
- }
- //为规则添加本地端口
- if (!string.IsNullOrEmpty(localPorts))
- {
- //需要移除空白字符(不能包含空白字符,下同)
- rule.LocalPorts = localPorts.Replace(" ", "");// "1-29999, 30003-33332, 33334-55554, 55556-60004, 60008-65535";
- }
- //为规则添加远程IP地址
- if (!string.IsNullOrEmpty(remoteAddresses))
- {
- rule.RemoteAddresses = remoteAddresses;
- }
- //为规则添加远程端口
- if (!string.IsNullOrEmpty(remotePorts))
- {
- rule.RemotePorts = remotePorts.Replace(" ", "");
- }
- //设置规则是阻止还是允许(ALLOW=允许,BLOCK=阻止)
- rule.Action = NET_FW_ACTION_.NET_FW_ACTION_ALLOW;
- //分组 名
- rule.Grouping = "SCWS";
- rule.InterfaceTypes = "All";
- //是否启用规则
- rule.Enabled = true;
- try
- {
- //添加规则到防火墙策略
- policy2.Rules.Add(rule);
- }
- catch (Exception ex)
- {
- string error = $"防火墙添加规则出错:{ruleName} {ex.Message}";
- LogHelper.Error(error, ex);
- return false;
- }
- return true;
- }
- /// <summary>
- /// 为WindowsDefender防火墙添加一条U3D通信TCP端口出站规则
- /// </summary>
- /// <param name="appPath">应用程序完整路径</param>
- /// <param name="localAddresses">本地地址</param>
- /// <param name="localPorts">本地端口</param>
- /// <param name="remoteAddresses">远端地址</param>
- /// <param name="remotePorts">远端端口</param>
- public static bool CreateTCPOutRule(string appPath, string localAddresses = null, string localPorts = null, string remoteAddresses = null, string remotePorts = null)
- {
- try
- {
- string ruleName = $"{System.IO.Path.GetFileNameWithoutExtension(appPath)}TCP";
- CreateOutRule(NET_FW_IP_PROTOCOL_.NET_FW_IP_PROTOCOL_TCP, ruleName, appPath, localAddresses, localPorts, remoteAddresses, remotePorts);
- }
- catch (Exception e)
- {
- LogHelper.Error(e.Message, e);
- return false;
- }
- return true;
- }
- /// <summary>
- /// 为WindowsDefender防火墙添加一条通信UDP端口出站规则
- /// </summary>
- /// <param name="appPath">应用程序完整路径</param>
- /// <param name="localAddresses">本地地址</param>
- /// <param name="localPorts">本地端口</param>
- /// <param name="remoteAddresses">远端地址</param>
- /// <param name="remotePorts">远端端口</param>
- public static bool CreateUDPOutRule(string appPath, string localAddresses = null, string localPorts = null, string remoteAddresses = null, string remotePorts = null)
- {
- try
- {
- string ruleName = $"{System.IO.Path.GetFileNameWithoutExtension(appPath)}UDP";
- CreateOutRule(NET_FW_IP_PROTOCOL_.NET_FW_IP_PROTOCOL_UDP, ruleName, appPath, localAddresses, localPorts, remoteAddresses, remotePorts);
- }
- catch (Exception e)
- {
- LogHelper.Error(e.Message, e);
- return false;
- }
- return true;
- }
- /// <summary>
- /// 删除WindowsDefender防火墙规则
- /// <summary>
- /// <param name="appPath">应用程序完整路径</param>
- public static bool DeleteRule(string appPath)
- {
- //创建防火墙策略类的实例
- INetFwPolicy2 policy2 = (INetFwPolicy2)Activator.CreateInstance(Type.GetTypeFromProgID("HNetCfg.FwPolicy2"));
- string ruleName = System.IO.Path.GetFileNameWithoutExtension(appPath);
- try
- {
- //根据规则名称移除规则
- policy2.Rules.Remove(ruleName);
- }
- catch (Exception e)
- {
- string error = $"防火墙删除规则出错:{ruleName} {e.Message}";
- LogHelper.Error(error, e);
- return false;
- }
- return true;
- }
- }
- }
|