diff --git a/lib/msf/core/exploit/browser_autopwnv2.rb b/lib/msf/core/exploit/browser_autopwn2.rb similarity index 99% rename from lib/msf/core/exploit/browser_autopwnv2.rb rename to lib/msf/core/exploit/browser_autopwn2.rb index 47a91d587c..7559adb18e 100644 --- a/lib/msf/core/exploit/browser_autopwnv2.rb +++ b/lib/msf/core/exploit/browser_autopwn2.rb @@ -1,6 +1,6 @@ ### # -# The Msf::Exploit::Remote::BrowserAutopwnv2 mixin is a replacement for the current BrowserAutoPwn. +# The Msf::Exploit::Remote::BrowserAutopwn2 mixin is a replacement for the current BrowserAutoPwn. # It works with other components such as BrowserExploitServer, BrowserProfileManager, and BES-based # exploits to perform a faster and smarter automated client-side attack. # @@ -9,7 +9,7 @@ require 'date' module Msf - module Exploit::Remote::BrowserAutopwnv2 + module Exploit::Remote::BrowserAutopwn2 include Msf::Exploit::Remote::BrowserExploitServer diff --git a/lib/msf/core/exploit/mixins.rb b/lib/msf/core/exploit/mixins.rb index 80afde7037..a575d03a83 100644 --- a/lib/msf/core/exploit/mixins.rb +++ b/lib/msf/core/exploit/mixins.rb @@ -104,4 +104,4 @@ require 'msf/core/exploit/android' # Browser Exploit Server require 'msf/core/exploit/remote/browser_exploit_server' -require 'msf/core/exploit/browser_autopwnv2' +require 'msf/core/exploit/browser_autopwn2' diff --git a/modules/auxiliary/server/browser_autopwn2.rb b/modules/auxiliary/server/browser_autopwn2.rb index e514547b7d..382e6007e9 100644 --- a/modules/auxiliary/server/browser_autopwn2.rb +++ b/modules/auxiliary/server/browser_autopwn2.rb @@ -6,7 +6,7 @@ require 'msf/core' class Metasploit3 < Msf::Auxiliary - include Msf::Exploit::Remote::BrowserAutopwnv2 + include Msf::Exploit::Remote::BrowserAutopwn2 def initialize(info={}) super(update_info(info, diff --git a/spec/lib/msf/core/exploit/browser_autopwnv2_spec.rb b/spec/lib/msf/core/exploit/browser_autopwn2_spec.rb similarity index 99% rename from spec/lib/msf/core/exploit/browser_autopwnv2_spec.rb rename to spec/lib/msf/core/exploit/browser_autopwn2_spec.rb index 0a85f94d56..97626b61d3 100644 --- a/spec/lib/msf/core/exploit/browser_autopwnv2_spec.rb +++ b/spec/lib/msf/core/exploit/browser_autopwn2_spec.rb @@ -1,6 +1,6 @@ require 'msf/core' -describe Msf::Exploit::Remote::BrowserAutopwnv2 do +describe Msf::Exploit::Remote::BrowserAutopwn2 do