httpz- Unnamed repository; edit this file 'description' to name the repository. |
git clone git://git.acid.vegas/-c.git |
Log | Files | Refs | Archive | README | LICENSE |
commit e257a62dc81de4da0ac4d158084f81ec65a7e1da
parent 3b96fa7bfdefe17296d748da95f215542eccecbc Author: acidvegas <acid.vegas@acid.vegas> Date: Fri, 15 Dec 2023 23:15:44 -0500 Log DNS responses (if any) even if we get no title or body preview Diffstat:
|
1 file changed, 2 insertions(+), 2 deletions(-) |
diff --git a/httpz.py b/httpz.py @@ -185,12 +185,12 @@ async def process_file(): if domain: tasks.add(asyncio.create_task(check_url(session, domain))) - if len(tasks) >= args.concurrency: + if len(tasks) >= args.concurrency: # Should be a better way to do this done, tasks = await asyncio.wait(tasks, return_when=asyncio.FIRST_COMPLETED) for task in done: domain, protocol, title, body, dns_records, status_code = task.result() - if title or body: # log results for dns? + if title or body or dns_records: write_result_to_file(domain, protocol, title, body, dns_records, status_code) counter += 1 |