Skip to content

Commit 9ebe1a2

Browse files
authored
Merge pull request #13 from Tw1sm/fix/issue-12
Fix bug in disablexp module
2 parents 0d38c2c + c2d47bc commit 9ebe1a2

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
## [v0.2.1] - 07/26/2024
3+
### Fixed
4+
- Issue [#12](https://github.com/Tw1sm/PySQLRecon/issues/12)
5+
26
## [v0.2.0] - 06/26/2024
37
### Added
48
- `sample` module to retrive table data without manual SQL query

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "pysqlrecon"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "Offensive MSSQL Python toolkit"
55
authors = ["Matt Creel <mcreel31@gmail.com>"]
66
readme = "README.md"

pysqlrecon/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '0.2.0'
1+
__version__ = '0.2.1'

pysqlrecon/modules/disablexp.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ def main(ctx: typer.Context):
4242
else:
4343
logger.info(f"Disabling xp_cmdshell on {pysqlrecon.target}")
4444
pysqlrecon.module_toggle("xp_cmdshell", "0")
45-
pysqlrecon.check_module("xp_cmdshell", show=True)
45+
pysqlrecon.check_module("xp_cmdshell")
46+
pysqlrecon.print_results(use_basic_tables)
4647

4748
pysqlrecon.disconnect()

0 commit comments

Comments
 (0)