forked from PyCQA/bandit
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New plugin to check for ignoring host keys
This new plugin adds a check that detects whether some code using paramiko is ignoring the host key verification. Ignoring a host key is the equivalent of ignoring a certificate as part of the TLS protocol. Original author: Eric Brown <[email protected]> Fixes Issue: PyCQA#357
- Loading branch information
1 parent
257b5dd
commit 0293e9d
Showing
6 changed files
with
87 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
# Copyright (c) 2018 VMware, Inc. | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
# not use this file except in compliance with the License. You may obtain | ||
# a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | ||
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | ||
# License for the specific language governing permissions and limitations | ||
# under the License. | ||
|
||
r""" | ||
========================================== | ||
B507: Test for missing host key validation | ||
========================================== | ||
Encryption in general is typically critical to the security of many | ||
applications. Using SSH can greatly increase security by guaranteeing the | ||
identity of the party you are communicating with. This is accomplished by one | ||
or both parties presenting trusted host keys during the connection | ||
initialization phase of SSH. | ||
When paramiko methods are used, host keys are verified by default. If host key | ||
verification is disabled, Bandit will return a HIGH severity error. | ||
:Example: | ||
.. code-block:: none | ||
>> Issue: [B507:ssh_no_host_key_verification] Paramiko call with policy set | ||
to automatically trust the unknown host key. | ||
Severity: High Confidence: Medium | ||
Location: examples/no_host_key_verification.py:4 | ||
3 ssh_client = client.SSHClient() | ||
4 ssh_client.set_missing_host_key_policy(client.AutoAddPolicy) | ||
5 ssh_client.set_missing_host_key_policy(client.WarningPolicy) | ||
.. versionadded:: 1.5.1 | ||
""" | ||
|
||
import bandit | ||
from bandit.core import test_properties as test | ||
|
||
|
||
@test.checks('Call') | ||
@test.test_id('B507') | ||
def ssh_no_host_key_verification(context): | ||
if (context.is_module_imported_like('paramiko') and | ||
context.call_function_name == 'set_missing_host_key_policy'): | ||
if (context.call_args and | ||
context.call_args[0] in ['AutoAddPolicy', 'WarningPolicy']): | ||
issue = bandit.Issue( | ||
severity=bandit.HIGH, | ||
confidence=bandit.MEDIUM, | ||
text='Paramiko call with policy set to automatically trust ' | ||
'the unknown host key.', | ||
lineno=context.get_lineno_for_call_arg( | ||
'set_missing_host_key_policy'), | ||
) | ||
return issue |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
---------------------------------- | ||
B507: ssh_no_host_key_verification | ||
---------------------------------- | ||
|
||
.. automodule:: bandit.plugins.ssh_no_host_key_verification |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from paramiko import client | ||
|
||
ssh_client = client.SSHClient() | ||
ssh_client.set_missing_host_key_policy(client.AutoAddPolicy) | ||
ssh_client.set_missing_host_key_policy(client.WarningPolicy) |
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