Missing services bug fix.

AutoRecon should not longer report 'unknown' services as missing. Fixes #130
Updated unidecode requirement to 1.3.2
This commit is contained in:
Tib3rius 2021-12-16 14:23:09 -05:00
parent 61f6650408
commit c4d1c8a9db
2 changed files with 4 additions and 4 deletions

View File

@ -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']:

6
poetry.lock generated
View File

@ -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"},
]