ClamClient.Net
1.0.0
.NET 8.0
This package targets .NET 8.0. The package is compatible with this framework or higher.
.NET Standard 2.0
This package targets .NET Standard 2.0. The package is compatible with this framework or higher.
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package ClamClient.Net --version 1.0.0
NuGet\Install-Package ClamClient.Net -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ClamClient.Net" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ClamClient.Net" Version="1.0.0" />
<PackageReference Include="ClamClient.Net" />
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add ClamClient.Net --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: ClamClient.Net, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package ClamClient.Net@1.0.0
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ClamClient.Net&version=1.0.0
#tool nuget:?package=ClamClient.Net&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
ClamClient.Net
Async .NET client library for ClamAV (clamd) with TCP and Unix socket support.
Features
- Scan files and arbitrary byte streams via
INSTREAM - TCP and Unix domain socket endpoints
- Full async/await with
CancellationTokensupport - Microsoft DI integration (
AddClamClient) - No external runtime dependencies beyond
Microsoft.Extensions.DependencyInjection.Abstractions
Requirements
- .NET Standard 2.0 or .NET 8+
- A running clamd daemon
Quick way to get a daemon running locally:
docker run -p 3310:3310 clamav/clamav:latest
Installation
dotnet add package ClamClient.Net
Quick start
Direct instantiation
using ClamClient.Net;
using ClamClient.Net.Configuration;
using ClamClient.Net.Results;
var options = new ClamClientOptions
{
Endpoint = ClamEndpoint.Tcp("localhost", 3310),
};
var client = new ClamAVClient(options);
bool alive = await client.PingAsync();
string version = await client.GetVersionAsync();
// Scan a stream
using var stream = File.OpenRead("/path/to/upload");
ScanResult result = await client.ScanStreamAsync(stream);
if (result.Status == ScanStatus.ThreatFound)
{
foreach (var threat in result.Threats)
Console.WriteLine($"Threat detected: {threat.ThreatName}");
}
Dependency Injection (ASP.NET Core / Generic Host)
// Program.cs
builder.Services.AddClamClient(options =>
{
options.Endpoint = ClamEndpoint.Tcp("localhost", 3310);
options.Timeout = TimeSpan.FromSeconds(15);
});
Inject IClamClient wherever you need it:
public class UploadService(IClamClient clamClient)
{
public async Task<bool> IsSafeAsync(Stream file, CancellationToken ct = default)
{
var result = await clamClient.ScanStreamAsync(file, ct);
return result.Status == ScanStatus.Clean;
}
}
Unix domain socket (Linux / macOS)
var options = new ClamClientOptions
{
Endpoint = ClamEndpoint.UnixSocket("/var/run/clamav/clamd.sock"),
};
Unix domain sockets require .NET 5 or later.
API reference
IClamClient
| Method | Description |
|---|---|
PingAsync |
Returns true if clamd replies PONG |
GetVersionAsync |
Returns the clamd version string |
GetStatsAsync |
Returns the raw STATS block |
ScanFileAsync(filePath) |
Scans a file path accessible to the clamd process |
MultiScanAsync(filePath) |
Multi-threaded directory/file scan |
ScanStreamAsync(stream) |
Streams arbitrary data to clamd via INSTREAM |
ReloadAsync |
Reloads the virus database |
ShutdownAsync |
Terminates the clamd process |
ClamClientOptions
| Property | Default | Description |
|---|---|---|
Endpoint |
tcp:localhost:3310 |
Target clamd endpoint |
Timeout |
00:00:10 |
Socket connect and read timeout |
ChunkSize |
131072 (128 KB) |
Max bytes per INSTREAM chunk |
MaxStreamSize |
26214400 (25 MB) |
Hard cap on total INSTREAM payload |
ScanResult
| Member | Description |
|---|---|
Status |
Clean, ThreatFound, Error, or Unknown |
Threats |
List of DetectedThreat (non-empty only when ThreatFound) |
RawResponse |
Raw string received from clamd |
Exceptions
| Type | When thrown |
|---|---|
ClamConnectionException |
Connection cannot be established or is lost |
ClamProtocolException |
clamd returns an unexpected or unparseable response |
ClamStreamSizeExceededException |
Input stream exceeds MaxStreamSize |
License
MIT
ClamClient.Net(中文说明)
适用于 ClamAV(clamd)的异步 .NET 客户端库,支持 TCP 和 Unix 套接字。
功能特性
- 通过
INSTREAM扫描文件及任意字节流 - 支持 TCP 和 Unix 域套接字端点
- 完整的 async/await 支持,含
CancellationToken - Microsoft DI 集成(
AddClamClient) - 除
Microsoft.Extensions.DependencyInjection.Abstractions外无额外运行时依赖
环境要求
- .NET Standard 2.0 或 .NET 8+
- 正在运行的 clamd 守护进程
本地快速启动守护进程:
docker run -p 3310:3310 clamav/clamav:latest
安装
dotnet add package ClamClient.Net
快速入门
直接实例化
using ClamClient.Net;
using ClamClient.Net.Configuration;
using ClamClient.Net.Results;
var options = new ClamClientOptions
{
Endpoint = ClamEndpoint.Tcp("localhost", 3310),
};
var client = new ClamAVClient(options);
bool alive = await client.PingAsync();
string version = await client.GetVersionAsync();
// 扫描流
using var stream = File.OpenRead("/path/to/upload");
ScanResult result = await client.ScanStreamAsync(stream);
if (result.Status == ScanStatus.ThreatFound)
{
foreach (var threat in result.Threats)
Console.WriteLine($"检测到威胁:{threat.ThreatName}");
}
依赖注入(ASP.NET Core / Generic Host)
// Program.cs
builder.Services.AddClamClient(options =>
{
options.Endpoint = ClamEndpoint.Tcp("localhost", 3310);
options.Timeout = TimeSpan.FromSeconds(15);
});
在需要的地方注入 IClamClient:
public class UploadService(IClamClient clamClient)
{
public async Task<bool> IsSafeAsync(Stream file, CancellationToken ct = default)
{
var result = await clamClient.ScanStreamAsync(file, ct);
return result.Status == ScanStatus.Clean;
}
}
Unix 域套接字(Linux / macOS)
var options = new ClamClientOptions
{
Endpoint = ClamEndpoint.UnixSocket("/var/run/clamav/clamd.sock"),
};
Unix 域套接字需要 .NET 5 或更高版本。
API 参考
IClamClient
| 方法 | 说明 |
|---|---|
PingAsync |
若 clamd 回复 PONG 则返回 true |
GetVersionAsync |
返回 clamd 版本字符串 |
GetStatsAsync |
返回原始 STATS 信息块 |
ScanFileAsync(filePath) |
扫描 clamd 进程可访问的文件路径 |
MultiScanAsync(filePath) |
多线程目录/文件扫描 |
ScanStreamAsync(stream) |
通过 INSTREAM 将任意数据流式传输到 clamd |
ReloadAsync |
重新加载病毒数据库 |
ShutdownAsync |
终止 clamd 进程 |
ClamClientOptions
| 属性 | 默认值 | 说明 |
|---|---|---|
Endpoint |
tcp:localhost:3310 |
目标 clamd 端点 |
Timeout |
00:00:10 |
套接字连接及读取超时 |
ChunkSize |
131072(128 KB) |
INSTREAM 每块最大字节数 |
MaxStreamSize |
26214400(25 MB) |
INSTREAM 总负载硬性上限 |
ScanResult
| 成员 | 说明 |
|---|---|
Status |
Clean、ThreatFound、Error 或 Unknown |
Threats |
DetectedThreat 列表(仅 ThreatFound 时非空) |
RawResponse |
从 clamd 收到的原始字符串 |
异常
| 类型 | 抛出时机 |
|---|---|
ClamConnectionException |
无法建立连接或连接断开 |
ClamProtocolException |
clamd 返回意外或无法解析的响应 |
ClamStreamSizeExceededException |
输入流超过 MaxStreamSize |
许可证
MIT
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. net9.0 was computed. net9.0-android was computed. net9.0-browser was computed. net9.0-ios was computed. net9.0-maccatalyst was computed. net9.0-macos was computed. net9.0-tvos was computed. net9.0-windows was computed. net10.0 was computed. net10.0-android was computed. net10.0-browser was computed. net10.0-ios was computed. net10.0-maccatalyst was computed. net10.0-macos was computed. net10.0-tvos was computed. net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
| .NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
| MonoAndroid | monoandroid was computed. |
| MonoMac | monomac was computed. |
| MonoTouch | monotouch was computed. |
| Tizen | tizen40 was computed. tizen60 was computed. |
| Xamarin.iOS | xamarinios was computed. |
| Xamarin.Mac | xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETStandard 2.0
- Microsoft.Bcl.AsyncInterfaces (>= 8.0.0)
- Microsoft.Extensions.DependencyInjection.Abstractions (>= 8.0.2)
- System.Memory (>= 4.6.3)
-
net8.0
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.