Skip to content

Commit bddf71b

Browse files
committed
fix for subdomains
1 parent b9b908d commit bddf71b

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
@@ -158,7 +158,7 @@ def expand_targets(self, scan_id):
158158

159159
for target in copy.deepcopy(self.arguments.targets):
160160
for row in find_events(target, "subdomain_scan", scan_id):
161-
for sub_domain in json.loads(row.json_event)["response"]["conditions_results"][
161+
for sub_domain in json.loads(row)["response"]["conditions_results"][
162162
"content"
163163
]:
164164
if sub_domain not in self.arguments.targets:

0 commit comments

Comments
 (0)