diff --git a/README.md b/README.md index 69241be..6881872 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ AutoRecon was inspired by three tools which the author used during the OSCP labs * Customizable service scanning plugins for further enumeration. * Suggested manual follow-up commands for when automation makes little sense. * Ability to limit port scanning to a combination of TCP/UDP ports. -* Ability to skip port scanning phase by suppling information about services which should be open. +* Ability to skip port scanning phase by supplying information about services which should be open. * Global and per-scan pattern matching which highlights and extracts important information from the noise. * An intuitive directory structure for results gathering. * Full logging of commands that were run, along with errors if they fail. diff --git a/autorecon/main.py b/autorecon/main.py index 2769590..f8ff349 100644 --- a/autorecon/main.py +++ b/autorecon/main.py @@ -17,7 +17,7 @@ from autorecon.plugins import Pattern, PortScan, ServiceScan, Report, AutoRecon from autorecon.targets import Target, Service -VERSION = "2.0.33" +VERSION = "2.0.34" if not os.path.exists(config['config_dir']): shutil.rmtree(config['config_dir'], ignore_errors=True, onerror=None) diff --git a/pyproject.toml b/pyproject.toml index 48c444a..8808a27 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "autorecon" -version = "2.0.33" +version = "2.0.34" description = "A multi-threaded network reconnaissance tool which performs automated enumeration of services." authors = ["Tib3rius"] license = "GNU GPL v3"