Skip to content

Commit d2c1499

Browse files
authored
v1.0.1
2 parents 8e82a7a + e9954a1 commit d2c1499

5 files changed

Lines changed: 21 additions & 8 deletions

File tree

ByteGuard.FileValidator.Scanners.Amsi.slnx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
<File Path="LICENSE" />
77
<File Path="README.md" />
88
<File Path=".github/workflows/ci.yml" />
9+
<File Path="SECURITY.md" />
910
</Folder>
1011
<Folder Name="/tests/">
1112
<Project Path="tests/ByteGuard.FileValidator.Scanner.Amsi.Tests.Unit/ByteGuard.FileValidator.Scanner.Amsi.Tests.Unit.csproj" />

Directory.Version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>1.0.0</VersionPrefix>
3+
<VersionPrefix>1.0.1</VersionPrefix>
44
</PropertyGroup>
55
</Project>

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

2-
# ByteGuard.FileValidator.Scanners.Amsi ![NuGet Version](https://img.shields.io/nuget/v/ByteGuard.FileValidator.Scanners.Amsi)
2+
# ByteGuard.FileValidator.Scanner.Amsi ![NuGet Version](https://img.shields.io/nuget/v/ByteGuard.FileValidator.Scanners.Amsi)
33

4-
`ByteGuard.FileValidator.Scanners.Amsi` is a Microsoft Antimalware Scan Interface (AMSI) specific antimalware scanner implementation for [`ByteGuard.FileValidator`](https://www.nuget.org/packages/ByteGuard.FileValidator).
4+
`ByteGuard.FileValidator.Scanner.Amsi` is a Microsoft Antimalware Scan Interface (AMSI) specific antimalware scanner implementation for [`ByteGuard.FileValidator`](https://www.nuget.org/packages/ByteGuard.FileValidator).
55

66
AMSI is a Windows API that allows applications to submit content for scanning and receive a verdict from the installed antimalware provider. It lets you route files through the OS antimalware engine (_for example Microsoft Defender or any other AMSI-integrated AV_) before they’re accepted by your application.
77

@@ -27,18 +27,18 @@
2727
## Getting Started
2828

2929
### Installation
30-
This package is published and installed via [NuGet](https://www.nuget.org/packages/ByteGuard.FileValidator.Scanners.Amsi).
30+
This package is published and installed via [NuGet](https://www.nuget.org/packages/ByteGuard.FileValidator.Scanner.Amsi).
3131

3232
Reference the package in your project:
3333
```bash
34-
dotnet add package ByteGuard.FileValidator.Scanners.Amsi
34+
dotnet add package ByteGuard.FileValidator.Scanner.Amsi
3535
```
3636

3737
## Usage
3838

3939
```csharp
4040
using ByteGuard.FileValidator;
41-
using ByteGuard.FileValidator.Scanners.Amsi;
41+
using ByteGuard.FileValidator.Scanner.Amsi;
4242

4343
var amsiConfig = new AmsiScannerConfiguration()
4444
{
@@ -108,4 +108,5 @@ If you verify the integration using known test signatures (for example, the EICA
108108
- Endpoint protection and monitoring
109109

110110
## License
111-
_ByteGuard.FileValidator.Scanners.Amsi is Copyright © ByteGuard Contributors - Provided under the MIT license._
111+
112+
_ByteGuard.FileValidator.Scanner.Amsi is Copyright © ByteGuard Contributors - Provided under the MIT license._

SECURITY.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Security Policy
2+
3+
## Supported Versions
4+
5+
Patches are considered for the two versions under active development in the `main` and `dev` branches. Normally, `main` will contain the most recent release version under maintenance, and `dev` will be a prerelease version undergoing active development.
6+
7+
## Reporting a Vulnerability
8+
9+
Please report any possible vulnerabilities using the Security tab in the repository header.
10+
11+
See [this additional information from GitHub on private vulnerability reporting](https://docs.github.com/en/code-security/security-advisories/guidance-on-reporting-and-writing-information-about-vulnerabilities/privately-reporting-a-security-vulnerability).

src/ByteGuard.FileValidator.Scanner.Amsi/ByteGuard.FileValidator.Scanner.Amsi.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</ItemGroup>
2121

2222
<ItemGroup>
23-
<PackageReference Include="ByteGuard.FileValidator" Version="1.1.0" />
23+
<PackageReference Include="ByteGuard.FileValidator" Version="1.3.0" />
2424
</ItemGroup>
2525

2626

0 commit comments

Comments
 (0)