Skip to content

Commit 40ca2b3

Browse files
committed
Adds sentinel notes to modules that are missing stability, reliability or side effects
1 parent 82018b6 commit 40ca2b3

File tree

60 files changed

+164
-48
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+164
-48
lines changed

modules/auxiliary/gather/pimcore_creds_sqli.rb

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

modules/auxiliary/gather/rails_doubletap_file_read.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ def initialize(info = {})
2929
[ 'EDB', '46585' ]
3030
],
3131
'Notes' => {
32-
'AKA' => ['DoubleTap']
32+
'AKA' => ['DoubleTap'],
33+
'Stability' => UNKNOWN_STABILITY,
34+
'Reliability' => UNKNOWN_RELIABILITY,
35+
'SideEffects' => UNKNOWN_SIDE_EFFECTS
3336
}
3437
)
3538
)

modules/auxiliary/scanner/http/apache_mod_cgi_bash_env.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@ def initialize(info = {})
4242
],
4343
'DisclosureDate' => '2014-09-24',
4444
'License' => MSF_LICENSE,
45-
'Notes' => { 'AKA' => ['Shellshock'] }
45+
'Notes' => {
46+
'AKA' => ['Shellshock'],
47+
'Stability' => UNKNOWN_STABILITY,
48+
'Reliability' => UNKNOWN_RELIABILITY,
49+
'SideEffects' => UNKNOWN_SIDE_EFFECTS
50+
}
4651
)
4752
)
4853

modules/auxiliary/scanner/http/apache_optionsbleed.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,10 @@ def initialize(info = {})
3131
'DisclosureDate' => '2017-09-18',
3232
'License' => MSF_LICENSE,
3333
'Notes' => {
34-
'AKA' => ['Optionsbleed']
34+
'AKA' => ['Optionsbleed'],
35+
'Stability' => UNKNOWN_STABILITY,
36+
'Reliability' => UNKNOWN_RELIABILITY,
37+
'SideEffects' => UNKNOWN_SIDE_EFFECTS
3538
}
3639
)
3740
)

modules/auxiliary/scanner/http/citrix_dir_traversal.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,10 @@ def initialize(info = {})
3333
'DisclosureDate' => '2019-12-17',
3434
'License' => MSF_LICENSE,
3535
'Notes' => {
36-
'AKA' => ['Shitrix']
36+
'AKA' => ['Shitrix'],
37+
'Stability' => UNKNOWN_STABILITY,
38+
'Reliability' => UNKNOWN_RELIABILITY,
39+
'SideEffects' => UNKNOWN_SIDE_EFFECTS
3740
}
3841
)
3942
)

modules/auxiliary/scanner/ike/cisco_ike_benigncertain.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,10 @@ def initialize(info = {})
3636
[ 'URL', 'https://musalbas.com/2016/08/18/equation-group-benigncertain.html' ]
3737
],
3838
'Notes' => {
39-
'AKA' => ['BENIGNCERTAIN']
39+
'AKA' => ['BENIGNCERTAIN'],
40+
'Stability' => UNKNOWN_STABILITY,
41+
'Reliability' => UNKNOWN_RELIABILITY,
42+
'SideEffects' => UNKNOWN_SIDE_EFFECTS
4043
},
4144
'DisclosureDate' => '2016-09-29'
4245
)

modules/auxiliary/scanner/rdp/cve_2019_0708_bluekeep.rb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ def initialize(info = {})
3939
'DefaultAction' => 'Scan',
4040
'Notes' => {
4141
'Stability' => [ CRASH_SAFE ],
42-
'AKA' => ['BlueKeep']
42+
'AKA' => ['BlueKeep'],
43+
'Reliability' => UNKNOWN_RELIABILITY,
44+
'SideEffects' => UNKNOWN_SIDE_EFFECTS
4345
}
4446
)
4547
)

modules/auxiliary/scanner/smb/smb_ms17_010.rb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,10 @@ def initialize(info = {})
5050
'AKA' => [
5151
'DOUBLEPULSAR',
5252
'ETERNALBLUE'
53-
]
53+
],
54+
'Stability' => UNKNOWN_STABILITY,
55+
'Reliability' => UNKNOWN_RELIABILITY,
56+
'SideEffects' => UNKNOWN_SIDE_EFFECTS
5457
}
5558
)
5659
)

modules/auxiliary/scanner/vxworks/urgent11_check.rb

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ def initialize(info = {})
2929
],
3030
'DisclosureDate' => '2019-08-09', # NVD entry publication
3131
'License' => MSF_LICENSE,
32-
'Notes' => { 'Stability' => [CRASH_SAFE] }
32+
'Notes' => {
33+
'Stability' => [CRASH_SAFE],
34+
'Reliability' => UNKNOWN_RELIABILITY,
35+
'SideEffects' => UNKNOWN_SIDE_EFFECTS
36+
}
3337
)
3438
)
3539

modules/exploits/linux/http/cve_2019_1663_cisco_rmi_rce.rb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,8 @@ def initialize(info = {})
266266
'DefaultTarget' => 0,
267267
'Notes' => {
268268
'Stability' => [ CRASH_SERVICE_DOWN, ],
269+
'Reliability' => UNKNOWN_RELIABILITY,
270+
'SideEffects' => UNKNOWN_SIDE_EFFECTS,
269271
},
270272
'Compat' => {
271273
'Meterpreter' => {

0 commit comments

Comments
 (0)