ronin-exploits 1.0.5 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ChangeLog.md +8 -0
- data/lib/ronin/exploits/cli/commands/new.rb +2 -2
- data/lib/ronin/exploits/cli/commands/run.rb +1 -1
- data/lib/ronin/exploits/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4dda20bce8921145f78d25820e4a8cbeee9093e8bfa1ae2284e590b527be6c76
|
|
4
|
+
data.tar.gz: b081649e7e59db4556ab4d889af42613d50eb2103ac390b0df7a7a4f86cb00a8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f140e2a3b0e00e2e0189958c121f1d9f27eaac216f57a102f8008f20ff5cd25524ff5886cd08152c539ae33e43912d3b8fd9c0044b651682b7c24a5606398f59
|
|
7
|
+
data.tar.gz: fdbd1ec9d694ce1072f6aed1c6e88d53563eeab355c015ba1a918d4b3b9c9a582eb43831c0fa8ade0d07ff58090b214abf46eaf4fe41edcbda7f595dae5e34e0
|
data/ChangeLog.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
### 1.0.6 / 2024-06-28
|
|
2
|
+
|
|
3
|
+
#### CLI
|
|
4
|
+
|
|
5
|
+
* Fixed the usage for `ronin-exploits new --software-version`.
|
|
6
|
+
* Fixed a bug in `ronin-exploits run` that would crash the command when the
|
|
7
|
+
payload failed to create a post-exploitation session.
|
|
8
|
+
|
|
1
9
|
### 1.0.5 / 2024-06-19
|
|
2
10
|
|
|
3
11
|
#### CLI
|
|
@@ -64,7 +64,7 @@ module Ronin
|
|
|
64
64
|
# --os The Operating System (OS) to target
|
|
65
65
|
# --os-version VERSION The OS version to target
|
|
66
66
|
# -S, --software NAME The software to target
|
|
67
|
-
# -V, --software-version
|
|
67
|
+
# -V, --software-version VERSION The software version to target
|
|
68
68
|
# -L, --loot Adds the loot mixin
|
|
69
69
|
# -h, --help Print help information
|
|
70
70
|
#
|
|
@@ -248,7 +248,7 @@ module Ronin
|
|
|
248
248
|
option :software_version, short: '-V',
|
|
249
249
|
value: {
|
|
250
250
|
type: String,
|
|
251
|
-
usage: '
|
|
251
|
+
usage: 'VERSION'
|
|
252
252
|
},
|
|
253
253
|
desc: 'The software version to target' do |ver|
|
|
254
254
|
# lazy initialize @target
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ronin-exploits
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Postmodern
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-06-
|
|
11
|
+
date: 2024-06-29 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: uri-query_params
|