Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
certcc-ghbot committed Apr 24, 2024
2 parents c623cb3 + 71ce807 commit 05e00f2
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
5 changes: 3 additions & 2 deletions db/modules_metadata_base.json
Original file line number Diff line number Diff line change
Expand Up @@ -88066,7 +88066,7 @@
"targets": [
"Auto"
],
"mod_time": "2023-12-19 19:01:45 +0000",
"mod_time": "2024-04-22 15:12:27 +0000",
"path": "/modules/exploits/linux/local/vcenter_java_wrapper_vmon_priv_esc.rb",
"is_install_path": true,
"ref_name": "linux/local/vcenter_java_wrapper_vmon_priv_esc",
Expand All @@ -88078,7 +88078,8 @@
"crash-service-down"
],
"Reliability": [
"repeatable-session"
"repeatable-session",
"event-dependent"
],
"SideEffects": [
"artifacts-on-disk",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def initialize(info = {})
},
'Notes' => {
'Stability' => [CRASH_SERVICE_DOWN],
'Reliability' => [REPEATABLE_SESSION],
'Reliability' => [REPEATABLE_SESSION, EVENT_DEPENDENT],
'SideEffects' => [ARTIFACTS_ON_DISK, CONFIG_CHANGES, IOC_IN_LOGS],
'AKA' => ['vScalation']
}
Expand Down
2 changes: 1 addition & 1 deletion spec/module_validation_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@
end

it 'has errors' do
expect(subject.errors.full_messages).to eq ['Reliability contains invalid values ["FIRST_ATTEMPT_FAIL"] - only ["first-attempt-fail", "repeatable-session", "unreliable-session"] is allowed']
expect(subject.errors.full_messages).to eq ['Reliability contains invalid values ["FIRST_ATTEMPT_FAIL"] - only ["first-attempt-fail", "repeatable-session", "unreliable-session", "event-dependent"] is allowed']
end
end

Expand Down
3 changes: 2 additions & 1 deletion spec/support/lib/module_validation.rb
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ def initialize(mod)
VALID_RELIABILITY_VALUES = [
Msf::FIRST_ATTEMPT_FAIL,
Msf::REPEATABLE_SESSION,
Msf::UNRELIABLE_SESSION
Msf::UNRELIABLE_SESSION,
Msf::EVENT_DEPENDENT
]

#
Expand Down

0 comments on commit 05e00f2

Please sign in to comment.