Commit 32986c4d by James Tanner

Fixes #5021 safely split hostkeys with quotes

parent e54a574b
......@@ -209,7 +209,12 @@ def parsekey(raw_key):
key_type = None # type of ssh key
type_index = None # index of keytype in key string|list
key_parts = shlex.split(raw_key)
# split key safely
lex = shlex.shlex(raw_key)
lex.quotes = ["'", '"']
lex.whitespace_split = True
key_parts = list(lex)
for i in range(0, len(key_parts)):
if key_parts[i] in VALID_SSH2_KEY_TYPES:
type_index = i
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment