Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix related modules references #18374

Merged
merged 4 commits into from
Sep 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,9 @@ def initialize(info = {})
'Notes' => {
'Stability' => [CRASH_SAFE],
'Reliability' => [REPEATABLE_SESSION],
'SideEffects' => [CONFIG_CHANGES, IOC_IN_LOGS]
'SideEffects' => [CONFIG_CHANGES, IOC_IN_LOGS],
'RelatedModules' => [ 'exploit/linux/telnet/netgear_telnetenable' ], # This module relies on users also running exploit/linux/telnet/netgear_telnetenable to get the shell.
},
'RelatedModules' => [ 'exploit/linux/telnet/netgear_telnetenable' ], # This module relies on users also running exploit/linux/telnet/netgear_telnetenable to get the shell.
'DisclosureDate' => '2021-09-06',
'DefaultTarget' => 0
)
Expand Down
4 changes: 2 additions & 2 deletions modules/auxiliary/admin/http/netgear_r6700_pass_reset.rb
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ def initialize(info = {})
'SideEffects' => [ CONFIG_CHANGES ], # This module will change the configuration by
# resetting the router to the default factory password.
'Stability' => [ CRASH_SERVICE_DOWN ], # This module will crash the target service after it is run.
'Reliability' => []
'Reliability' => [],
'RelatedModules' => [ 'exploit/linux/telnet/netgear_telnetenable' ], # This module relies on users also running exploit/linux/telnet/netgear_telnetenable to get the shell.
},
'RelatedModules' => [ 'exploit/linux/telnet/netgear_telnetenable' ], # This module relies on users also running exploit/linux/telnet/netgear_telnetenable to get the shell.
'DisclosureDate' => '2020-06-15',
'DefaultTarget' => 0
)
Expand Down
1 change: 1 addition & 0 deletions modules/auxiliary/gather/pulse_secure_file_disclosure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ def initialize(info = {})
'Notes' => {
'Stability' => [CRASH_SAFE],
'SideEffects' => [IOC_IN_LOGS],
'Reliability' => [],
'RelatedModules' => ['exploit/linux/http/pulse_secure_cmd_exec']
}
))
Expand Down
7 changes: 6 additions & 1 deletion modules/auxiliary/scanner/http/emby_ssrf_scanner.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ def initialize
'Author' => 'Btnz',
'License' => MSF_LICENSE,
'Disclosure Date' => '2020-10-01',
'RelatedModules' => ['auxiliary/scanner/http/emby_version_ssrf'],
'Notes' => {
'Stability' => [],
'SideEffects' => [],
'Reliability' => [],
'RelatedModules' => ['auxiliary/scanner/http/emby_version_ssrf'],
},
'References' => [
['CVE', '2020-26948'],
['URL', 'https://github.com/btnz-k/emby_ssrf']
Expand Down
7 changes: 6 additions & 1 deletion modules/auxiliary/scanner/http/emby_version_ssrf.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,12 @@ def initialize
'Author' => 'Btnz',
'License' => MSF_LICENSE,
'Disclosure Date' => '2020-10-01',
'RelatedModules' => ['auxiliary/scanner/http/emby_ssrf_scanner'],
'Notes' => {
'Stability' => [],
'SideEffects' => [],
'Reliability' => [],
'RelatedModules' => ['auxiliary/scanner/http/emby_ssrf_scanner'],
},
'References' => [
['CVE', '2020-26948'],
['URL', 'https://github.com/btnz-k/emby_ssrf']
Expand Down
3 changes: 2 additions & 1 deletion modules/exploits/windows/rdp/rdp_doublepulsar_rce.rb
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,8 @@ def initialize(info = {})
'AKA' => ['DOUBLEPULSAR'],
'RelatedModules' => ['exploit/windows/smb/smb_doublepulsar_rce'],
'Stability' => [CRASH_OS_DOWN],
'Reliability' => [REPEATABLE_SESSION]
'Reliability' => [REPEATABLE_SESSION],
'SideEffects' => []
}
))

Expand Down
3 changes: 2 additions & 1 deletion modules/exploits/windows/smb/smb_doublepulsar_rce.rb
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ def initialize(info = {})
'exploit/windows/smb/ms17_010_eternalblue'
],
'Stability' => [CRASH_OS_DOWN],
'Reliability' => [REPEATABLE_SESSION]
'Reliability' => [REPEATABLE_SESSION],
'SideEffects' => []
}
))

Expand Down