From 408dc24e4857b5a6ecf2a8c7c0002967ad69e5e0 Mon Sep 17 00:00:00 2001 From: Caleb Stewart Date: Thu, 27 Jan 2022 21:34:29 -0500 Subject: [PATCH] Fixed load command path argument --- CHANGELOG.md | 5 +++++ pwncat/commands/load.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ecfe44..2fe4fb7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/pwncat/commands/load.py b/pwncat/commands/load.py index d325877..2fbe082 100644 --- a/pwncat/commands/load.py +++ b/pwncat/commands/load.py @@ -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)