修复重复结果问题

This commit is contained in:
Jing Ling
2020-09-03 20:37:43 +08:00
parent b529bf25f4
commit af472aa27c
2 changed files with 6 additions and 9 deletions
+1 -1
View File
@@ -191,7 +191,7 @@ def find_subdomains(domain, data):
js_urls.update(find_js_urls(domain, req_url, rsp_html))
resp_data = request.bulk_request(js_urls)
for resp in resp_data:
for _, resp in resp_data:
if not resp:
continue
text = utils.decode_resp_text(resp)