Skip to content

Commit

Permalink
Merge pull request #21 from csanders-git/master
Browse files Browse the repository at this point in the history
Fixing dependency vulnerabilities
  • Loading branch information
zmallen authored Jan 7, 2019
2 parents 0fc6186 + 364ab9f commit 1bbfd9b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ftw/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def extract_yaml(yaml_files):
for yaml_file in yaml_files:
try:
with open(yaml_file, 'r') as fd:
loaded_yaml.append(yaml.load(fd))
loaded_yaml.append(yaml.safe_load(fd))
except IOError as e:
print('Error reading file', yaml_file)
raise e
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ lazy-object-proxy==1.2.2
py==1.4.31
pylint==1.5.5
pytest==2.9.1
PyYAML==3.11
requests==2.9.1
PyYAML==4.2b1
requests==2.20.0
six==1.10.0
wrapt==1.10.8
python-dateutil==2.6.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup

setup(name='ftw',
version='1.1.5',
version='1.1.7',
description='Framework for Testing WAFs',
author='Chaim Sanders, Zack Allen',
author_email='zma4580@gmail.com, chaim.sanders@gmail.com',
Expand Down

0 comments on commit 1bbfd9b

Please sign in to comment.