Skip to content

Commit

Permalink
Cisco Firepower Management Center - 608 - Added troubleshooting infor…
Browse files Browse the repository at this point in the history
…mation to the help.md (#2219)
  • Loading branch information
igorski-r7 committed Jan 10, 2024
1 parent dbbb9f5 commit a720cb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion plugins/cisco_firepower_management_center/help.md
Original file line number Diff line number Diff line change
Expand Up @@ -707,7 +707,8 @@ Example output:

## Troubleshooting

*There is no troubleshooting for this plugin.*
* The certificate authentication is used solely in two actions, namely: `Add Scan Result` and `Bulk Add Scan Result`. Please remember, that the data entered into the certificate input field in the connection is required to be a base-64 encoded PKCS12 certificate file, exported from the Firepower Management Center server. The passphrase is a password created during the PKCS12 certificate file export.
* `SSL Verify` field is used by all other actions (i.e. excluding `Add Scan Result` and `Bulk Add Scan Result`), for SSL certificate verification. If the certificate is self-signed then SSL Verify should be set to `False` for those actions.

# Version History

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def connect(self, params):
self.password = password
self.host = params.get(Input.SERVER)
self.certificate = params.get(Input.CERTIFICATE)
self.passphrase = params.get(Input.CERTIFICATE_PASSPHRASE).get("secretKey")
self.passphrase = params.get(Input.CERTIFICATE_PASSPHRASE, {}).get("secretKey")

self.cisco_firepower_api = CiscoFirePowerApi(
username=username,
Expand Down

0 comments on commit a720cb2

Please sign in to comment.