Skip to content

Commit 37388ca

Browse files
committed
Adds sentinel values to modules missing notes
1 parent b16732c commit 37388ca

File tree

2,022 files changed

+12057
-1922
lines changed

Some content is hidden

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

2,022 files changed

+12057
-1922
lines changed

lib/rubocop/cop/lint/module_enforce_notes.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,9 @@ def notes_formatted(indent)
5656
<<~EOF.strip
5757
,
5858
#{indent}'Notes' => {
59-
#{indent} 'Reliability' => UNKNOWN_RELIABILITY,
60-
#{indent} 'Stability' => UNKNOWN_STABILITY,
61-
#{indent} 'SideEffects' => UNKNOWN_SIDE_EFFECTS
59+
#{indent} 'Reliability' => [UNKNOWN_RELIABILITY],
60+
#{indent} 'Stability' => [UNKNOWN_STABILITY],
61+
#{indent} 'SideEffects' => [UNKNOWN_SIDE_EFFECTS]
6262
#{indent}}
6363
EOF
6464
end

modules/auxiliary/fileformat/badpdf.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ def initialize(info = {})
2727
'References' => [
2828
['CVE', '2018-4993'],
2929
['URL', 'https://research.checkpoint.com/ntlm-credentials-theft-via-pdf-files/']
30-
]
30+
],
31+
'Notes' => {
32+
'Reliability' => [UNKNOWN_RELIABILITY],
33+
'Stability' => [UNKNOWN_STABILITY],
34+
'SideEffects' => [UNKNOWN_SIDE_EFFECTS]
35+
}
3136
)
3237
)
3338
register_options(

modules/auxiliary/gather/advantech_webaccess_creds.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,12 @@ def initialize(info = {})
2626
['CVE', '2016-5810'],
2727
['URL', 'https://github.com/rapid7/metasploit-framework/pull/7859#issuecomment-274305229']
2828
],
29-
'DisclosureDate' => '2017-01-21'
29+
'DisclosureDate' => '2017-01-21',
30+
'Notes' => {
31+
'Reliability' => [UNKNOWN_RELIABILITY],
32+
'Stability' => [UNKNOWN_STABILITY],
33+
'SideEffects' => [UNKNOWN_SIDE_EFFECTS]
34+
}
3035
)
3136
)
3237

modules/auxiliary/gather/alienvault_iso27001_sqli.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ def initialize(info = {})
2929
},
3030
'Platform' => ['linux'],
3131
'Privileged' => false,
32-
'DisclosureDate' => '2014-03-30'
32+
'DisclosureDate' => '2014-03-30',
33+
'Notes' => {
34+
'Reliability' => [UNKNOWN_RELIABILITY],
35+
'Stability' => [UNKNOWN_STABILITY],
36+
'SideEffects' => [UNKNOWN_SIDE_EFFECTS]
37+
}
3338
)
3439
)
3540

modules/auxiliary/gather/alienvault_newpolicyform_sqli.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@ def initialize(info = {})
3131
'SSL' => true
3232
},
3333
'Privileged' => false,
34-
'DisclosureDate' => '2014-05-09'
34+
'DisclosureDate' => '2014-05-09',
35+
'Notes' => {
36+
'Reliability' => [UNKNOWN_RELIABILITY],
37+
'Stability' => [UNKNOWN_STABILITY],
38+
'SideEffects' => [UNKNOWN_SIDE_EFFECTS]
39+
}
3540
)
3641
)
3742

modules/auxiliary/gather/android_browser_file_theft.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,12 @@ def initialize(info = {})
2929
['URL', 'https://android.googlesource.com/platform/packages/apps/Browser/+/d2391b492dec778452238bc6d9d549d56d41c107%5E%21/#F0'],
3030
['URL', 'https://bugs.chromium.org/p/chromium/issues/detail?id=90222'] # the UXSS
3131
],
32-
'DefaultAction' => 'WebServer'
32+
'DefaultAction' => 'WebServer',
33+
'Notes' => {
34+
'Reliability' => [UNKNOWN_RELIABILITY],
35+
'Stability' => [UNKNOWN_STABILITY],
36+
'SideEffects' => [UNKNOWN_SIDE_EFFECTS]
37+
}
3338
)
3439
)
3540

modules/auxiliary/gather/android_browser_new_tab_cookie_theft.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ def initialize(info = {})
3434
['URL', 'https://android.googlesource.com/platform/packages/apps/Browser/+/d2391b492dec778452238bc6d9d549d56d41c107%5E%21/#F0'],
3535
['URL', 'http://www.rafayhackingarticles.net/2014/12/android-browser-cross-scheme-data.html']
3636
],
37-
'DefaultAction' => 'WebServer'
37+
'DefaultAction' => 'WebServer',
38+
'Notes' => {
39+
'Reliability' => [UNKNOWN_RELIABILITY],
40+
'Stability' => [UNKNOWN_STABILITY],
41+
'SideEffects' => [UNKNOWN_SIDE_EFFECTS]
42+
}
3843
)
3944
)
4045

modules/auxiliary/gather/android_htmlfileprovider.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,12 @@ def initialize(info = {})
3131
[ 'CVE', '2010-4804' ],
3232
[ 'URL', 'http://thomascannon.net/blog/2010/11/android-data-stealing-vulnerability/' ]
3333
],
34-
'DefaultAction' => 'WebServer'
34+
'DefaultAction' => 'WebServer',
35+
'Notes' => {
36+
'Reliability' => [UNKNOWN_RELIABILITY],
37+
'Stability' => [UNKNOWN_STABILITY],
38+
'SideEffects' => [UNKNOWN_SIDE_EFFECTS]
39+
}
3540
)
3641
)
3742

modules/auxiliary/gather/android_object_tag_webview_uxss.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,12 @@ def initialize(info = {})
4040
[ 'URL', 'http://trac.webkit.org/changeset/96826/webkit' ]
4141
],
4242
'DefaultAction' => 'WebServer',
43-
'DisclosureDate' => '2014-10-04'
43+
'DisclosureDate' => '2014-10-04',
44+
'Notes' => {
45+
'Reliability' => [UNKNOWN_RELIABILITY],
46+
'Stability' => [UNKNOWN_STABILITY],
47+
'SideEffects' => [UNKNOWN_SIDE_EFFECTS]
48+
}
4449
)
4550
)
4651

modules/auxiliary/gather/android_stock_browser_uxss.rb

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@ module also allows running arbitrary javascript in the context of the targeted U
4242
[ 'OSVDB', '110664' ],
4343
[ 'CVE', '2014-6041' ]
4444
],
45-
'DefaultAction' => 'WebServer'
45+
'DefaultAction' => 'WebServer',
46+
'Notes' => {
47+
'Reliability' => [UNKNOWN_RELIABILITY],
48+
'Stability' => [UNKNOWN_STABILITY],
49+
'SideEffects' => [UNKNOWN_SIDE_EFFECTS]
50+
}
4651
)
4752
)
4853

0 commit comments

Comments
 (0)