ronin-exploits 1.1.0.rc1 → 1.1.0.rc2
Sign up to get free protection for your applications and to get access to all the features.
- 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 +8 -8
- data/lib/ronin/exploits/cli.rb +2 -0
- 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: 1ffd8a91a46c0ef7c6f51b67d888982105e70c89dd5426ef8618ab100ce7e85e
|
4
|
+
data.tar.gz: c606a18604302c7f7525c5e694a739aa9a8f27d7e27dd6ade459d7afe85493c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb0f78b1aebef5d68bb442b89bd710a839e4d983718fcf86d3a77841351f6b5d068e3846e866cde1130562bb416a60fb7fbfa115ebe1a2693fac2d2367eab04b
|
7
|
+
data.tar.gz: b5164f3d77bc186c788dea751591d9a76469157b3d3fc390d37ef6c1c21343e24564ed4c7d0e84e878e4f56447acd5f21ae6f2161f1737e68c38a682c33be8c9
|
data/ChangeLog.md
CHANGED
@@ -16,6 +16,14 @@
|
|
16
16
|
`ronin-exploits run` command for the given exploit.
|
17
17
|
* Use hyphenated values for `ronin-exploits new` options.
|
18
18
|
|
19
|
+
### 1.0.6 / 2024-06-28
|
20
|
+
|
21
|
+
#### CLI
|
22
|
+
|
23
|
+
* Fixed the usage for `ronin-exploits new --software-version`.
|
24
|
+
* Fixed a bug in `ronin-exploits run` that would crash the command when the
|
25
|
+
payload failed to create a post-exploitation session.
|
26
|
+
|
19
27
|
### 1.0.5 / 2024-06-19
|
20
28
|
|
21
29
|
#### 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
|
#
|
@@ -253,7 +253,7 @@ module Ronin
|
|
253
253
|
option :software_version, short: '-V',
|
254
254
|
value: {
|
255
255
|
type: String,
|
256
|
-
usage: '
|
256
|
+
usage: 'VERSION'
|
257
257
|
},
|
258
258
|
desc: 'The software version to target' do |ver|
|
259
259
|
# lazy initialize @target
|
@@ -283,15 +283,15 @@ module Ronin
|
|
283
283
|
run_test
|
284
284
|
else
|
285
285
|
run_exploit
|
286
|
-
end
|
287
286
|
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
287
|
+
if options[:irb]
|
288
|
+
start_shell
|
289
|
+
else
|
290
|
+
post_exploitation
|
291
|
+
end
|
293
292
|
|
294
|
-
|
293
|
+
perform_cleanup
|
294
|
+
end
|
295
295
|
end
|
296
296
|
|
297
297
|
#
|
@@ -429,7 +429,7 @@ module Ronin
|
|
429
429
|
print_error "payload (#{@exploit.payload.class_id}) did not create a post-exploitation session"
|
430
430
|
|
431
431
|
perform_cleanup
|
432
|
-
|
432
|
+
exit(1)
|
433
433
|
end
|
434
434
|
|
435
435
|
@exploit.payload.session.system.interact
|
data/lib/ronin/exploits/cli.rb
CHANGED
@@ -20,6 +20,7 @@
|
|
20
20
|
#
|
21
21
|
|
22
22
|
require 'ronin/exploits/version'
|
23
|
+
require 'ronin/core/cli/help/banner'
|
23
24
|
|
24
25
|
require 'command_kit/commands'
|
25
26
|
require 'command_kit/commands/auto_load'
|
@@ -40,6 +41,7 @@ module Ronin
|
|
40
41
|
namespace: "#{self}::Commands"
|
41
42
|
)
|
42
43
|
include CommandKit::Options::Version
|
44
|
+
include Core::CLI::Help::Banner
|
43
45
|
|
44
46
|
command_name 'ronin-exploits'
|
45
47
|
version Ronin::Exploits::VERSION
|
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.1.0.
|
4
|
+
version: 1.1.0.rc2
|
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
|