Skip to content

Commit e4feb4f

Browse files
authored
Merge pull request #20305 from cgranleese-r7/fix-duplicate-notes
Fixes duplicate notes in a couple of modules
2 parents 86a321f + 1c72a3a commit e4feb4f

File tree

2 files changed

+6
-11
lines changed

2 files changed

+6
-11
lines changed

modules/exploits/linux/local/sock_sendpage.rb

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,9 @@ def initialize(info = {})
4646
],
4747
'Notes' =>
4848
{
49+
'Reliability' => [ REPEATABLE_SESSION ],
50+
'SideEffects' => [],
51+
'Stability' => [ CRASH_OS_DOWN ],
4952
'AKA' => ['EXACTCHANGE']
5053
},
5154
'Platform' => [ 'linux' ],
@@ -65,11 +68,6 @@ def initialize(info = {})
6568
[ 'Linux x86', { 'Arch' => ARCH_X86 } ]
6669
],
6770
'DisclosureDate' => '2009-08-13',
68-
'Notes' =>
69-
{
70-
'Reliability' => [ REPEATABLE_SESSION ],
71-
'Stability' => [ CRASH_OS_DOWN ],
72-
},
7371
'DefaultTarget' => 0))
7472
register_options [
7573
OptBool.new('DEBUG_EXPLOIT', [ true, "Make the exploit executable be verbose about what it's doing", false ])

modules/exploits/unix/webapp/phpbb_highlight.rb

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,17 +43,14 @@ def initialize(info = {})
4343
'RequiredCmd' => 'generic perl ruby python bash-tcp telnet',
4444
}
4545
},
46-
'Notes' =>
47-
{
48-
'AKA' => ['ESMARKCONANT']
49-
},
50-
'Platform' => 'unix',
5146
'Notes' =>
5247
{
5348
'Stability' => [Msf::CRASH_SAFE],
5449
'SideEffects' => [],
55-
'Reliability' => []
50+
'Reliability' => [],
51+
'AKA' => ['ESMARKCONANT']
5652
},
53+
'Platform' => 'unix',
5754
'Arch' => ARCH_CMD,
5855
'Targets' =>
5956
[

0 commit comments

Comments
 (0)