We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for the cve_test test type to enable the "Common Vulnerability Exposure (CVEs)" vulnerabilities.
cve_test
To run this test, it should be possible to use the following code snippet:
[Fact] public async Task Get_Users_ShouldNotFindCVEs() { var target = new Target($"{_fixture.Url}/Users") .WithMethod(HttpMethod.Get); var builder = new ScanSettingsBuilder() .WithName(nameof(Get_Users_ShouldNotFindCVEs)) .WithTests(new List<TestType> { TestType.Cve }); await _runner .CreateScan(builder) .Run(target); }
Please see the following references for more information on this vulnerability:
The text was updated successfully, but these errors were encountered:
feat(scan): add support for CVE test
076c356
closes #154
feat(scan): add support for CVE test (#155)
611a328
derevnjuk
Successfully merging a pull request may close this issue.
Add support for the
cve_test
test type to enable the "Common Vulnerability Exposure (CVEs)" vulnerabilities.To run this test, it should be possible to use the following code snippet:
Please see the following references for more information on this vulnerability:
The text was updated successfully, but these errors were encountered: