From c4d1c8a9db9581154f37ca7d3a8ef5f8bf2b0cf5 Mon Sep 17 00:00:00 2001 From: Tib3rius <48113936+Tib3rius@users.noreply.github.com> Date: Thu, 16 Dec 2021 14:23:09 -0500 Subject: [PATCH] Missing services bug fix. AutoRecon should not longer report 'unknown' services as missing. Fixes #130 Updated unidecode requirement to 1.3.2 --- autorecon/main.py | 2 +- poetry.lock | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/autorecon/main.py b/autorecon/main.py index 4b24822..6a92a55 100644 --- a/autorecon/main.py +++ b/autorecon/main.py @@ -694,7 +694,7 @@ async def scan_target(target): if not service_match: warn('{byellow}[' + target.address + ']{srst} Service ' + service.full_tag() + ' did not match any plugins based on the service name.{rst}', verbosity=2) - if service.name != 'tcpwrapped' and service.full_tag() not in target.autorecon.missing_services: + if service.name not in ['status', 'tcpwrapped', 'unknown'] and service.full_tag() not in target.autorecon.missing_services: target.autorecon.missing_services.append(service.full_tag()) for plugin in target.autorecon.plugin_types['report']: diff --git a/poetry.lock b/poetry.lock index eeaf603..c8cfa8e 100644 --- a/poetry.lock +++ b/poetry.lock @@ -24,7 +24,7 @@ python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" [[package]] name = "unidecode" -version = "1.3.1" +version = "1.3.2" description = "ASCII transliterations of Unicode text" category = "main" optional = false @@ -49,6 +49,6 @@ toml = [ {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, ] unidecode = [ - {file = "Unidecode-1.3.1-py3-none-any.whl", hash = "sha256:5f58926b9125b499f8ab6816828e737578fa3e31fa24d351a3ab7f4b7c064ab0"}, - {file = "Unidecode-1.3.1.tar.gz", hash = "sha256:6efac090bf8f29970afc90caf4daae87b172709b786cb1b4da2d0c0624431ecc"}, + {file = "Unidecode-1.3.2-py3-none-any.whl", hash = "sha256:215fe33c9d1c889fa823ccb66df91b02524eb8cc8c9c80f9c5b8129754d27829"}, + {file = "Unidecode-1.3.2.tar.gz", hash = "sha256:669898c1528912bcf07f9819dc60df18d057f7528271e31f8ec28cc88ef27504"}, ]