Skip to content

Commit

Permalink
Fix bug with tags fields in vulns web.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ezequieltbh committed Nov 16, 2017
1 parent 2b60d72 commit 609ca0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ Make sure you run ```./faraday.py --update``` the first time after an update!
New features in the latest update
=====================================

November 17, 2017:
---
* Fix bug with tags in models.

November 5, 2017:
---
Expand Down
2 changes: 1 addition & 1 deletion persistence/server/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1156,7 +1156,7 @@ def __init__(self, vuln_web, workspace_name):
self.hostnames = vuln_web.get('hostnames')
self.impact = vuln_web.get('impact')
self.service = vuln_web.get('service')
self.tags = vuln_web.get('tags')
self.tags = vuln_web.get('tags', list())
self.target = vuln_web.get('target')
self.parent = vuln_web.get('parent')
self.policyviolations = vuln_web.get('policyviolations', list())
Expand Down

0 comments on commit 609ca0a

Please sign in to comment.