C# 设置防火墙的创建规则

  对于某些程序,我们只允许它使用某些特定端口、网络类型或者特定IP类型等信息。这时候,需要使用到防火墙里面的“高级设置”,创建某些特定的入站或者出栈规则,以规避其程序使用允许端口等意外的信息。

  下面以创建出站规则为例,编写一条出站规则,规避除允许规则以外的通过防火墙。创建规则时,会使用到接口INetFwRule,其有关介绍参照MSDN文档

  创建规则的方法:

/// <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_BLOCK;
  //分组 名
  rule.Grouping = "GroupsName";

  rule.InterfaceTypes = "All";
  //是否启用规则
  rule.Enabled = true;
  try
  {
    //添加规则到防火墙策略
    policy2.Rules.Add(rule);
  }
  catch (Exception e)
  {
    string error = $"防火墙添加规则出错:{ruleName} {e.Message}";
    AppLog.Error(error);
    throw new Exception(error);
  }
  return true;
}

  创建TCP的出站规则

  使用上述代码,为创建一条TCP类型的出站规则:

/// <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)
   {
     AppLog.Error(e.Message);
     throw new Exception(e.Message);
   }
   return true;
 }

  创建UDP的出站规则

  和TCP的出站规则类似,只是传入的类型不一样。使用前面的代码,创建一条UDP的出站规则:

/// <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)
  {
    AppLog.Error(e.Message);
    throw new Exception(e.Message);
  }
  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}";
    AppLog.Error(error);
    throw new Exception(error);
  }
  return true;
}

以上就是C# 设置防火墙的创建规则的详细内容,更多关于c# 防火墙的资料请关注我们其它相关文章!

(0)

相关推荐

  • 正则表达式语法规则及在Javascript和C#中的使用方法

    一.正则表达式概念: 在计算机科学中,是指一个用来描述或者匹配一系列符合某个句法规则的字符串的单个字符串.在很多文本编辑器或其他工具里,正则表达式通常被用来检索和/或替换那些符合某个模式的文本内容.许多程序设计语言都支持利用正则表达式进行字符串操作. 二.正则表达式的使用: 正则表达式在ASP.NET中主要是用来对输入的内容进行验证,验证一般分为两种一种是客户端JS验证,另一种是服务器端验证 1.JS对输入内容验证 复制代码 代码如下: function check() {           

  • c# 防火墙添加/删除 特定端口的示例

    针对将特定端口加入到windows系统的防火墙中,使其允许或禁止通过防火墙.其大概思路是: /// <summary> /// 添加防火墙例外端口 /// </summary> /// <param name="name">名称</param> /// <param name="port">端口</param> /// <param name="protocol">

  • C# 命名规则(挺不错的)

    1.用Pascal规则来命名方法和类型. public class DataGrid { public void DataBind() { } } 2.用Camel规则来命名局部变量和方法的参数. public class Product { private string _productId; private string _productName; public void AddProduct(string productId,string productName) { } } 3.所有的成

  • c# 给button添加不规则的图片以及用pictureBox替代button响应点击事件的方法

    1.Flat button 用这个方法,前提是要把button的type设置为Flat 复制代码 代码如下: button1.TabStop = false;button1.FlatAppearance.BorderSize = 0;button1.FlatAppearance.BorderColor = Color.FromArgb(0, 255, 255, 255); //设置边框的颜色Transparentbutton1.FlatAppearance.MouseOverBackColor

  • c#图片处理之图片裁剪成不规则图形

    为了让大家知道下面内容是否是自己想要的,我先发效果图. 好了,那就开始贴代码了 以下为一个按钮的事件,为裁剪准备图片.裁剪路径.保存路径 复制代码 代码如下: private void button1_Click(object sender, EventArgs e)        {            GraphicsPath path = new GraphicsPath();            Point[] p = {                            new

  • C#用递归算法实现:一列数的规则如下: 1、1、2、3、5、8、13、21、34,求第30位数是多少

    方法一:递归算法 /// <summary> /// 一列数的规则如下: 1.1.2.3.5.8.13.21.34求第30位数是多少, 用递归算法实现.(C#语言) /// </summary> /// <param name="pos"></param> /// <returns></returns> public int GetNumberAtPos(int pos) { if(pos==0||pos==1)

  • c#栈变化规则图解示例(栈的生长与消亡)

    栈的变化规则:1.方法调用会导致栈的生长,具体包括两个步骤:一.插入方法返回地址(下图中的Fn:):二.将实际参数按值(可以使用ref或out修饰)拷贝并插入到栈中(可以使用虚参数访问).2.遇到局部变量定义会向栈中插入局部变量.3.遇到return语句会导致栈消亡,一直消亡到方法返回地址,并把return的返回值设置到方法返回地址中.4.这里先不考虑中括号导致的栈的消亡. 复制代码 代码如下: using System;using System.Collections.Generic;usin

  • c# 通过代码开启或关闭防火墙

    通过代码操作防火墙的方式有两种:一是代码操作修改注册表启用或关闭防火墙:二是直接操作防火墙对象来启用或关闭防火墙.不论哪一种方式,都需要使用管理员权限,所以操作前需要判断程序是否具有管理员权限. 1.判断程序是否拥有管理员权限 需要引用命名空间:System.Security.Principal /// <summary> /// 判断程序是否拥有管理员权限 /// </summary> /// <returns>true:是管理员:false:不是管理员</re

  • C#常用的命名规则汇总

    本文详细汇总了C#常用的命名规则.分享给大家供大家参考.具体如下: Pascal 规则 每个单词开头的字母大写(如 TestCounter).   Camel 规则 除了第一个单词外的其他单词的开头字母大写. 如. testCounter. Upper 规则 仅用于一两个字符长的常量的缩写命名,超过三个字符长度应该应用Pascal规则. 例如: 复制代码 代码如下: public class Math { public const PI = ... public const E = ... pu

  • C#创建不规则窗体的4种方式详解

    现在,C#创建不规则窗体不是一件难事,下面总结一下: 一.自定义窗体 一般为规则的图形,如圆.椭圆等. 做法:重写Form1_Paint事件(Form1是窗体的名字),最简单的一种情况如下: System.Drawing.Drawing2D.GraphicsPath shape = new System.Drawing.Drawing2D.GraphicsPath(); shape.AddEllipse(0,0,this.Height, this.Width); this.Region = ne

随机推荐