Skip to content

Commit

Permalink
minor tweaks to logging
Browse files Browse the repository at this point in the history
  • Loading branch information
nullt3r committed May 13, 2022
1 parent 995e862 commit 83b73d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion jfscan/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (1, 4, 6)
VERSION = (1, 4, 7)

__version__ = ".".join(map(str, VERSION))
2 changes: 2 additions & 0 deletions jfscan/core/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,8 @@ def load_targets(self, res, targets_file=None, target=None):

elif Validator.is_ipv4_cidr(_target) or Validator.is_ipv6_cidr(_target):
res.add_cidr(_target)
else:
logger.warning("host %s is in unrecognized format, skipping...", _target)

target_before = _target

Expand Down

0 comments on commit 83b73d3

Please sign in to comment.