-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add config.tls_verify to control TLS certs check (#217)
* add config.tls_verify to control TLS certs check RapiDAST sometimes may need to contact servers on its own. This may happen during: - OAuth pre-authentication - manual download of OpenAPI, or GraphQL schemas The application being tested may only have self signed certs, and importing in the default CA location just for a temporary scan may sometimes not be ideal. This commit adds the config.tls_verify, which maps to python's requests "verify", so that TLS certificate verification can be either disabled or mapped to a non-default CA location. NOTE: In some cases, RapiDAST manually downloads ZAP extensions from upstream (in zap_none). I purposefully did NOT optionally disable this verification, for security reasons (if github.com does not have a valid certificate, this would be reason to worry about) * renamed config tls_verify to tls_verify_for_rapidast_downloads
- Loading branch information
Showing
4 changed files
with
42 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters