Skip to content

Commit f102028

Browse files
committed
Land #16666, Correctly format the notes sections
2 parents 572ee18 + a075c67 commit f102028

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

modules/auxiliary/admin/http/wp_automatic_plugin_privesc.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ def initialize(info = {})
3131
'Targets' => [['WordPress', {}]],
3232
'DefaultTarget' => 0,
3333
'References' => [
34-
['URL', 'https://blog.nintechnet.com/critical-vulnerability-fixed-in-wordpress-automatic-plugin/'],
35-
['NOCVE', 'Patched in 3.53.3 without vendor disclosure']
34+
['URL', 'https://blog.nintechnet.com/critical-vulnerability-fixed-in-wordpress-automatic-plugin/']
3635
],
3736
'Notes' => {
3837
'Stability' => [CRASH_SAFE],
3938
'Reliability' => [],
40-
'SideEffects' => [CONFIG_CHANGES, IOC_IN_LOGS]
39+
'SideEffects' => [CONFIG_CHANGES, IOC_IN_LOGS],
40+
'NOCVE' => ['Patched in 3.53.3 without vendor disclosure']
4141
}
4242
)
4343
)

modules/auxiliary/admin/http/wp_gdpr_compliance_privesc.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ def initialize(info = {})
3535
],
3636
'Notes' =>
3737
{
38-
'SideEffects' => [CONFIG_CHANGES]
38+
'Stability' => [],
39+
'Reliability' => [],
40+
'SideEffects' => [CONFIG_CHANGES]
3941
},
4042
'DisclosureDate' => '2018-11-08'
4143
))

modules/exploits/linux/misc/cisco_rv340_sslvpn.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,10 @@ def initialize(info = {})
6262
'DisclosureDate' => '2022-02-02',
6363
'DefaultTarget' => 0,
6464
'Notes' => {
65-
'Stability' => CRASH_SERVICE_RESTARTS,
65+
'Stability' => [CRASH_SERVICE_RESTARTS],
6666
# repeatable... but only works 65% of the time, see comments above
67-
'Reliability' => REPEATABLE_SESSION,
68-
'SideEffects' => nil
67+
'Reliability' => [REPEATABLE_SESSION],
68+
'SideEffects' => []
6969
}
7070
)
7171
)

modules/exploits/unix/webapp/bolt_authenticated_rce.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def initialize(info = {})
8383
},
8484
'DefaultTarget' => 2,
8585
'Notes' => {
86-
'NOCVE' => '0day',
86+
'NOCVE' => ['0day'],
8787
'Stability' => [SERVICE_RESOURCE_LOSS], # May hang up the service
8888
'Reliability' => [REPEATABLE_SESSION],
8989
'SideEffects' => [IOC_IN_LOGS, CONFIG_CHANGES, ARTIFACTS_ON_DISK]

modules/exploits/windows/browser/malwarebytes_update_exec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def initialize(info = {})
3535
'References' =>
3636
[
3737
[ 'CVE', '2014-4936' ],
38-
[' OSVDB', '116050'],
38+
[ 'OSVDB', '116050' ],
3939
[ 'URL', 'http://blog.0x3a.com/post/104954032239/cve-2014-4936-malwarebytes-anti-malware-and'] # Discoverer's blog
4040
],
4141
'DefaultOptions' =>

0 commit comments

Comments
 (0)