Skip to content

Commit b835c92

Browse files
committed
fix for subdomains
1 parent 3968789 commit b835c92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nettacker/core/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def expand_targets(self, scan_id):
152152

153153
for target in copy.deepcopy(self.arguments.targets):
154154
for row in find_events(target, "subdomain_scan", scan_id):
155-
for sub_domain in json.loads(row.json_event)["response"]["conditions_results"][
155+
for sub_domain in json.loads(row)["response"]["conditions_results"][
156156
"content"
157157
]:
158158
if sub_domain not in self.arguments.targets:

0 commit comments

Comments
 (0)