fix: [cleanup] Quick clean up on yaml load function

pull/222/head
chrisr3d 2018-08-07 18:14:29 +02:00
parent 57af98720d
commit bb6002a3ff
No known key found for this signature in database
GPG Key ID: 6BBED1B63A6D639F
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ def handler(q=False):
return misperrors return misperrors
config = SigmaConfiguration() config = SigmaConfiguration()
try: try:
parser = SigmaParser(yaml.load(request.get('sigma')), config) parser = SigmaParser(yaml.safe_load(request.get('sigma')), config)
result = ("Syntax valid: {}".format(parser.values)) result = ("Syntax valid: {}".format(parser.values))
except Exception as e: except Exception as e:
result = ("Syntax error: {}".format(str(e))) result = ("Syntax error: {}".format(str(e)))