From c58aaa8bbefc87e37fc7fc93be1feb197ec19894 Mon Sep 17 00:00:00 2001 From: Postmodern Date: Wed, 19 Jun 2024 21:23:16 -0700 Subject: [PATCH] Updated the ChangeLog for 1.0.5. --- ChangeLog.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/ChangeLog.md b/ChangeLog.md index 90db329e..cfa3c08b 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1,3 +1,22 @@ +### 1.0.5 / 2024-06-19 + +#### CLI + +* Correctly assign the `-d` short flag to `--debug` and the `-D` short flag to + `--dry-run` for the `ronin-exploits run` command. +* Multiple bug fixes to the `ronin-exploits new` command: + * Create the parent directory of the new exploit file, if it already doesn't + exist, when running `ronin-exploits new path/to/new_exploit.rb`. + * Fixed a bug where `ronin-exploits new -t open_redirect` was not being + accepted as a valid exploit type. + * Fixed a bug in `ronin-explotis new` where `-t xss` and `-t ssti` were not + adding placeholder `base_path` and `query_param` metadata attributes to the + newly generated exploit file. + * Fixed a typo in the example `escape_expr` metadata attribute added by + `ronin-exploits new -t ssti`. + * Fixed a spelling mistake in the new exploit template used by the + `ronin-exploits new` command. + ### 1.0.4 / 2023-12-23 * Documentation fixes.