Add clean_id function to salt.utils.verify.py

This commit is contained in:
Ch3LL 2017-07-31 11:43:49 -04:00
parent e9b0f20f8a
commit 7a4cddcd95

View file

@ -485,12 +485,21 @@ def clean_path(root, path, subdir=False):
return ''
def clean_id(id_):
'''
Returns if the passed id is clean.
'''
if re.search(r'\.\.{sep}'.format(sep=os.sep), id_):
return False
return True
def valid_id(opts, id_):
'''
Returns if the passed id is valid
'''
try:
return bool(clean_path(opts['pki_dir'], id_))
return bool(clean_path(opts['pki_dir'], id_)) and clean_id(id_)
except (AttributeError, KeyError) as e:
return False