Fixes #5021 safely split hostkeys with quotes

pull/5028/head
James Tanner 11 years ago
parent e54a574bb2
commit 32986c4d64

@ -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

Loading…
Cancel
Save