80 lines
3.7 KiB
XML
Executable File
80 lines
3.7 KiB
XML
Executable File
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<IsPackable>true</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
<PackageId>MarketAlly.AIPlugin.Security</PackageId>
|
|
<Version>2.2.0</Version>
|
|
<Authors>David H Friedel Jr</Authors>
|
|
<Company>MarketAlly</Company>
|
|
<Product>AIPlugin Security Toolkit</Product>
|
|
<Title>MarketAlly AI Plugin Security Analysis Toolkit</Title>
|
|
<Description>
|
|
Security analysis and vulnerability detection plugins for the MarketAlly AI Plugin framework. Includes:
|
|
|
|
- SecurityScanPlugin: Detects hardcoded secrets, API keys, and security vulnerabilities
|
|
- VulnerabilityAnalyzerPlugin: Scans dependencies for known vulnerabilities
|
|
- InputValidationPlugin: Analyzes input validation and sanitization patterns
|
|
- AuthenticationAnalyzerPlugin: Reviews authentication and authorization logic
|
|
- SecureConfigurationPlugin: Validates secure configuration practices
|
|
|
|
Helps identify and remediate security issues in your codebase.
|
|
</Description>
|
|
<Copyright>Copyright © 2025 MarketAlly</Copyright>
|
|
<PackageIcon>icon.png</PackageIcon>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://github.com/MarketAlly/MarketAlly.AIPlugin</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/MarketAlly/MarketAlly.AIPlugin</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<PackageTags>ai plugin security vulnerability-analysis secrets-detection authentication authorization input-validation</PackageTags>
|
|
<PackageReleaseNotes>
|
|
Version 2.2.0 - Enhanced Security Framework:
|
|
- Added comprehensive testing infrastructure with unit and integration tests
|
|
- Implemented central configuration management system
|
|
- Added SecurityAnalysisOrchestrator for coordinated multi-plugin analysis
|
|
- Created SecurityPatternEngine with parallel processing and caching
|
|
- Added SecurityAnalyticsTelemetry for performance monitoring and analytics
|
|
- Enhanced performance optimization with parallel file processing
|
|
- Improved error handling and validation throughout
|
|
- Added entropy-based secret detection capabilities
|
|
- Comprehensive documentation and architectural improvements
|
|
</PackageReleaseNotes>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="icon.png">
|
|
<Pack>true</Pack>
|
|
<PackagePath>\</PackagePath>
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
<Visible>true</Visible>
|
|
</None>
|
|
<None Include="README.md" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="9.0.10" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.10" />
|
|
<PackageReference Include="NuGet.Protocol" Version="6.14.0" />
|
|
<PackageReference Include="NuGet.Versioning" Version="6.14.0" />
|
|
<PackageReference Include="xunit" Version="2.9.3" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\MarketAlly.AIPlugin\MarketAlly.AIPlugin.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project> |