diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e84c2f..a31b504 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ # Changelog +## [v0.2.1] - 07/26/2024 +### Fixed +- Issue [#12](https://github.com/Tw1sm/PySQLRecon/issues/12) + ## [v0.2.0] - 06/26/2024 ### Added - `sample` module to retrive table data without manual SQL query diff --git a/pyproject.toml b/pyproject.toml index ab493fc..5a28496 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysqlrecon" -version = "0.2.0" +version = "0.2.1" description = "Offensive MSSQL Python toolkit" authors = ["Matt Creel "] readme = "README.md" diff --git a/pysqlrecon/__init__.py b/pysqlrecon/__init__.py index a9fdc5c..fb13a35 100644 --- a/pysqlrecon/__init__.py +++ b/pysqlrecon/__init__.py @@ -1 +1 @@ -__version__ = '0.2.0' \ No newline at end of file +__version__ = '0.2.1' \ No newline at end of file diff --git a/pysqlrecon/modules/disablexp.py b/pysqlrecon/modules/disablexp.py index 697fb35..bc34a40 100644 --- a/pysqlrecon/modules/disablexp.py +++ b/pysqlrecon/modules/disablexp.py @@ -42,6 +42,7 @@ def main(ctx: typer.Context): else: logger.info(f"Disabling xp_cmdshell on {pysqlrecon.target}") pysqlrecon.module_toggle("xp_cmdshell", "0") - pysqlrecon.check_module("xp_cmdshell", show=True) + pysqlrecon.check_module("xp_cmdshell") + pysqlrecon.print_results(use_basic_tables) pysqlrecon.disconnect() \ No newline at end of file