Skip to content

Commit 777efb5

Browse files
committed
Land rapid7#3669 - Deprecate ff 17 svg exploit
2 parents c73ec66 + b93fda5 commit 777efb5

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

modules/exploits/multi/browser/firefox_svg_plugin.rb

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,20 @@ class Metasploit3 < Msf::Exploit::Remote
1010

1111
include Msf::Exploit::Remote::BrowserExploitServer
1212
include Msf::Exploit::EXE
13-
include Msf::Exploit::Remote::BrowserAutopwn
13+
# include Msf::Exploit::Remote::BrowserAutopwn
1414
include Msf::Exploit::Remote::FirefoxPrivilegeEscalation
15-
16-
autopwn_info({
17-
:ua_name => HttpClients::FF,
18-
:ua_minver => "17.0",
19-
:ua_maxver => "17.0.1",
20-
:javascript => true,
21-
:rank => NormalRanking
22-
})
15+
include Msf::Module::Deprecated
16+
17+
DEPRECATION_DATE = Date.new(2014, 10, 17)
18+
DEPRECATION_REPLACEMENT = 'exploit/multi/browser/firefox_tostring_console_injection'
19+
20+
# autopwn_info({
21+
# :ua_name => HttpClients::FF,
22+
# :ua_minver => "17.0",
23+
# :ua_maxver => "17.0.1",
24+
# :javascript => true,
25+
# :rank => NormalRanking
26+
# })
2327

2428
def initialize(info = {})
2529
super(update_info(info,

0 commit comments

Comments
 (0)