Skip to content

DrMarkDunne/zap-api-dotnet

 
 

Repository files navigation

zap-api-dotnet

OWASP ZAP Dot NET API

Install-Package OWASPZAPDotNetAPI -Version 2.10.0	

Samples and how to:

Although the target framework for this dll is .Net framework 4.5, you could also use the library from a .Net core application.

In case of TLS errors, try:

        private static void ConfigureTLSSettingsForDotNet45()
        {
            ServicePointManager.Expect100Continue = true;
            ServicePointManager.SecurityProtocol |= SecurityProtocolType.Tls
                   | SecurityProtocolType.Tls11
                   | SecurityProtocolType.Tls12
                   | SecurityProtocolType.Ssl3;
        }

About

OWASP ZAP Dot NET API forked from zaproxy/zap-api-dotnet

Resources

License

Stars

Watchers

Forks

Languages

  • C# 100.0%