-
Notifications
You must be signed in to change notification settings - Fork 95
Open
Description
Description
Detected SSL that will accept an unverified connection. This makes the connections susceptible to man-in-the-middle attacks.
Used verify_mode as VERIFY_NONE as below in various source code file in this repo.
..
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
..
Effected files:
metrics-apache-graphite.rb :
sensu-plugins-http/bin/check-http-json.rb
Line 164 in 115bc8d
http.verify_mode = OpenSSL::SSL::VERIFY_NONE if config[:insecure] |
sensu-plugins-http/bin/check-http.rb
Line 330 in 115bc8d
http.verify_mode = OpenSSL::SSL::VERIFY_NONE if config[:insecure] |
OpenSSL::SSL::VERIFY_NONE |
http.verify_mode = OpenSSL::SSL::VERIFY_NONE |
Remediation
- Use 'OpenSSL::SSL::VERIFY_PEER' instead.
Metadata
Metadata
Assignees
Labels
No labels