1
0
mirror of https://github.com/calebstewart/pwncat.git synced 2024-11-24 01:25:37 +01:00

Fixed load command path argument

This commit is contained in:
Caleb Stewart 2022-01-27 21:34:29 -05:00
parent d67865bdaa
commit 408dc24e48
2 changed files with 6 additions and 1 deletions

View File

@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
The Changelog starts with v0.4.1, because we did not keep one before that,
and simply didn't have the time to go back and retroactively create one.
## [Unreleased]
### Changed
- Fixed `Manger.load_modules` call in `pwncat/commands/load.py`.
## [0.5.3] - 2022-01-09
Fix for argument parsing bug introduced in `0.5.2` which caused bind/connect
protocols to be automatically interpreted as SSL even when `--ssl` was not

View File

@ -28,4 +28,4 @@ class Command(CommandDefinition):
def run(self, manager: "pwncat.manager.Manager", args):
manager.load_modules(args.path)
manager.load_modules(*args.path)