From 29b302fa8c8314dea54da778a293bfef7692ad0c Mon Sep 17 00:00:00 2001 From: goproslowyo <68455785+goproslowyo@users.noreply.github.com> Date: Wed, 5 Jan 2022 18:23:41 -0800 Subject: [PATCH] Fix small bug from curl 404 output (#134) * Fix small bug from curl 404 output This PR fixes a small bug from when `curl` receives an `HTTP 404` from the web server and the error code is non-zero (in this case `22`). This handles that case in the if statement. There may other error codes that `curl` throws, HTTP-wise, that you may want to catch in the future as well but I didn't run into them. * Update main.py Fixed small logic bug. Co-authored-by: Tib3rius <48113936+Tib3rius@users.noreply.github.com> --- autorecon/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autorecon/main.py b/autorecon/main.py index 418cae0..4343ae5 100644 --- a/autorecon/main.py +++ b/autorecon/main.py @@ -323,7 +323,7 @@ async def service_scan(plugin, service): warn('A process was left running after service scan {bblue}' + plugin.name + ' {green}(' + tag + '){rst} against {byellow}' + service.target.address + '{rst} finished. Please ensure non-blocking processes are awaited before the run coroutine finishes. Awaiting now.', verbosity=2) await process_dict['process'].wait() - if process_dict['process'].returncode != 0: + if process_dict['process'].returncode != 0 and not (process_dict['cmd'].startswith('curl') and process_dict['process'].returncode == 22): errors = [] while True: line = await process_dict['stderr'].readline()