Skip to content

Commit

Permalink
Merge pull request #390 from Patrowl/develop
Browse files Browse the repository at this point in the history
1.5.13
  • Loading branch information
sebastien-powl authored Oct 9, 2023
2 parents 53ee0a2 + 1ff3bbb commit 8ea98f3
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.12
1.5.13
2 changes: 1 addition & 1 deletion engines/owl_dns/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM alpine:3.16.3
LABEL Name="Patrowl\ DNS\ \(Patrowl engine\)" Version="1.5.2"
LABEL Name="Patrowl\ DNS\ \(Patrowl engine\)" Version="1.5.3"

# Install dependencies
RUN apk add --update --no-cache \
Expand Down
2 changes: 1 addition & 1 deletion engines/owl_dns/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.2
1.5.3
4 changes: 2 additions & 2 deletions engines/owl_dns/engine-owl_dns.py
Original file line number Diff line number Diff line change
Expand Up @@ -373,7 +373,7 @@ def _reverse_whois(scan_id, asset, datatype):
# wf_value = w['org'].lower()
# elif 'registrant_name' in w.keys() and w['registrant_name'] not in ["", None]:
# wf_value = w['registrant_name'].lower()
if w.name is None:
if w.domain_name is None:
return res
wf_value = ""
# Get the registrant organization if available, otherwise try to get the registrant name
Expand Down Expand Up @@ -730,7 +730,7 @@ def _get_whois(scan_id, asset):
w = whois.whois(asset)
# w = whois.query(asset, force=True)
# print(w.__dict_)
if w.name is None:
if w.domain_name is None:
res.update({
asset: {"errors": w}
})
Expand Down

0 comments on commit 8ea98f3

Please sign in to comment.