Skip to content
This repository has been archived by the owner on Sep 17, 2021. It is now read-only.

Commit

Permalink
Merge 558f535 into 65a7384
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Kelley committed Dec 11, 2017
2 parents 65a7384 + 558f535 commit 53c4cee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion security_monkey/auditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def _issue_matches_listeners(self, item, issue):
if protocol == 'all_protocols':
return True

match = re.search(r'(\d+)-(\d+)', port)
match = re.search(r'(-?\d+)-(-?\d+)', port)
if match:
from_port = int(match.group(1))
to_port = int(match.group(2))
Expand Down

0 comments on commit 53c4cee

Please sign in to comment.