mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2026-02-05 15:33:57 +00:00
DropRequestsApp: added new app
This commit is contained in:
192
Apps/DropRequestsApp/App.cs
Normal file
192
Apps/DropRequestsApp/App.cs
Normal file
@@ -0,0 +1,192 @@
|
||||
/*
|
||||
Technitium DNS Server
|
||||
Copyright (C) 2021 Shreyas Zare (shreyas@technitium.com)
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
*/
|
||||
|
||||
using DnsApplicationCommon;
|
||||
using Newtonsoft.Json;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Net;
|
||||
using System.Threading.Tasks;
|
||||
using TechnitiumLibrary.Net;
|
||||
using TechnitiumLibrary.Net.Dns;
|
||||
|
||||
namespace DropRequests
|
||||
{
|
||||
public class App : IDnsRequestController
|
||||
{
|
||||
#region variables
|
||||
|
||||
bool _enableBlocking;
|
||||
IReadOnlyList<NetworkAddress> _allowedNetworks;
|
||||
IReadOnlyList<NetworkAddress> _blockedNetworks;
|
||||
IReadOnlyList<BlockedQuestion> _blockedQuestions;
|
||||
|
||||
#endregion
|
||||
|
||||
#region IDisposable
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
//do nothing
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region public
|
||||
|
||||
public Task InitializeAsync(IDnsServer dnsServer, string config)
|
||||
{
|
||||
dynamic jsonConfig = JsonConvert.DeserializeObject(config);
|
||||
|
||||
_enableBlocking = jsonConfig.enableBlocking.Value;
|
||||
|
||||
if (jsonConfig.allowedNetworks is null)
|
||||
{
|
||||
_allowedNetworks = Array.Empty<NetworkAddress>();
|
||||
}
|
||||
else
|
||||
{
|
||||
List<NetworkAddress> allowedNetworks = new List<NetworkAddress>();
|
||||
|
||||
foreach (dynamic allowedNetwork in jsonConfig.allowedNetworks)
|
||||
{
|
||||
allowedNetworks.Add(NetworkAddress.Parse(allowedNetwork.Value));
|
||||
}
|
||||
|
||||
_allowedNetworks = allowedNetworks;
|
||||
}
|
||||
|
||||
if (jsonConfig.blockedNetworks is null)
|
||||
{
|
||||
_blockedNetworks = Array.Empty<NetworkAddress>();
|
||||
}
|
||||
else
|
||||
{
|
||||
List<NetworkAddress> blockedNetworks = new List<NetworkAddress>();
|
||||
|
||||
foreach (dynamic blockedNetwork in jsonConfig.blockedNetworks)
|
||||
{
|
||||
blockedNetworks.Add(NetworkAddress.Parse(blockedNetwork.Value));
|
||||
}
|
||||
|
||||
_blockedNetworks = blockedNetworks;
|
||||
}
|
||||
|
||||
if (jsonConfig.blockedQuestions is null)
|
||||
{
|
||||
_blockedQuestions = Array.Empty<BlockedQuestion>();
|
||||
}
|
||||
else
|
||||
{
|
||||
List<BlockedQuestion> blockedQuestions = new List<BlockedQuestion>();
|
||||
|
||||
foreach (dynamic blockedQuestion in jsonConfig.blockedQuestions)
|
||||
{
|
||||
blockedQuestions.Add(new BlockedQuestion(blockedQuestion));
|
||||
}
|
||||
|
||||
_blockedQuestions = blockedQuestions;
|
||||
}
|
||||
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
public Task<DnsRequestControllerAction> GetRequestActionAsync(DnsDatagram request, IPEndPoint remoteEP, DnsTransportProtocol protocol)
|
||||
{
|
||||
if (!_enableBlocking)
|
||||
return Task.FromResult(DnsRequestControllerAction.Allow);
|
||||
|
||||
IPAddress remoteIp = remoteEP.Address;
|
||||
|
||||
foreach (NetworkAddress allowedNetwork in _allowedNetworks)
|
||||
{
|
||||
if (allowedNetwork.Contains(remoteIp))
|
||||
return Task.FromResult(DnsRequestControllerAction.Allow);
|
||||
}
|
||||
|
||||
foreach (NetworkAddress blockedNetwork in _blockedNetworks)
|
||||
{
|
||||
if (blockedNetwork.Contains(remoteIp))
|
||||
return Task.FromResult(DnsRequestControllerAction.DropSilently);
|
||||
}
|
||||
|
||||
if (request.Question.Count != 1)
|
||||
return Task.FromResult(DnsRequestControllerAction.DropSilently);
|
||||
|
||||
DnsQuestionRecord requestQuestion = request.Question[0];
|
||||
|
||||
foreach (BlockedQuestion blockedQuestion in _blockedQuestions)
|
||||
{
|
||||
if (blockedQuestion.Matches(requestQuestion))
|
||||
return Task.FromResult(DnsRequestControllerAction.DropSilently);
|
||||
}
|
||||
|
||||
return Task.FromResult(DnsRequestControllerAction.Allow);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region properties
|
||||
|
||||
public string Description
|
||||
{ get { return "Drop incoming DNS requests that match the rules in the config."; } }
|
||||
|
||||
#endregion
|
||||
|
||||
class BlockedQuestion
|
||||
{
|
||||
#region variables
|
||||
|
||||
readonly string _name;
|
||||
readonly DnsResourceRecordType _type;
|
||||
|
||||
#endregion
|
||||
|
||||
#region constructor
|
||||
|
||||
public BlockedQuestion(dynamic jsonQuestion)
|
||||
{
|
||||
_name = jsonQuestion.name?.Value;
|
||||
|
||||
string strType = jsonQuestion.type?.Value;
|
||||
if (!string.IsNullOrEmpty(strType) && Enum.TryParse(strType, true, out DnsResourceRecordType type))
|
||||
_type = type;
|
||||
else
|
||||
_type = DnsResourceRecordType.Unknown;
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
#region public
|
||||
|
||||
public bool Matches(DnsQuestionRecord question)
|
||||
{
|
||||
if ((_name is not null) && !_name.Equals(question.Name, StringComparison.OrdinalIgnoreCase))
|
||||
return false;
|
||||
|
||||
if ((_type != DnsResourceRecordType.Unknown) && (_type != question.Type))
|
||||
return false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
#endregion
|
||||
}
|
||||
}
|
||||
}
|
||||
41
Apps/DropRequestsApp/DropRequestsApp.csproj
Normal file
41
Apps/DropRequestsApp/DropRequestsApp.csproj
Normal file
@@ -0,0 +1,41 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net5.0</TargetFramework>
|
||||
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
||||
<Version>1.0</Version>
|
||||
<Company>Technitium</Company>
|
||||
<Product>Technitium DNS Server</Product>
|
||||
<Authors>Shreyas Zare</Authors>
|
||||
<AssemblyName>DropRequestsApp</AssemblyName>
|
||||
<RootNamespace>DropRequests</RootNamespace>
|
||||
<PackageProjectUrl>https://technitium.com/dns/</PackageProjectUrl>
|
||||
<RepositoryUrl>https://github.com/TechnitiumSoftware/DnsServer</RepositoryUrl>
|
||||
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
|
||||
<OutputType>Library</OutputType>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\..\DnsApplicationCommon\DnsApplicationCommon.csproj">
|
||||
<Private>false</Private>
|
||||
</ProjectReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Reference Include="TechnitiumLibrary.Net">
|
||||
<HintPath>..\..\..\TechnitiumLibrary\bin\TechnitiumLibrary.Net.dll</HintPath>
|
||||
<Private>false</Private>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<None Update="dnsApp.config">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</None>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
33
Apps/DropRequestsApp/dnsApp.config
Normal file
33
Apps/DropRequestsApp/dnsApp.config
Normal file
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"enableBlocking": true,
|
||||
"allowedNetworks": [
|
||||
"127.0.0.1",
|
||||
"::1",
|
||||
"10.0.0.0/8",
|
||||
"172.16.0.0/12",
|
||||
"192.168.0.0/16"
|
||||
],
|
||||
"blockedNetworks": [
|
||||
"1.1.1.1/24"
|
||||
],
|
||||
"blockedQuestions": [
|
||||
{
|
||||
"name": "example.com"
|
||||
},
|
||||
{
|
||||
"type": "ANY"
|
||||
},
|
||||
{
|
||||
"name": "pizzaseo.com",
|
||||
"type": "RRSIG"
|
||||
},
|
||||
{
|
||||
"name": "sl",
|
||||
"type": "ANY"
|
||||
},
|
||||
{
|
||||
"name": "a.a.a.ooooops.space",
|
||||
"type": "A"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user