Fix a typo that broke this module against x64

[SeeRM #7747]
bug/bundler_fix
James Lee 2013-02-19 16:18:29 -06:00 committed by Tod Beardsley
parent 04ec4e432d
commit 9d4a3ca729
1 changed files with 1 additions and 1 deletions

View File

@ -350,7 +350,7 @@ class Metasploit3 < Msf::Exploit::Remote
arch = $1
if (arch =~ /(x86|i386|i686)/i)
return ARCH_X86
elsif (os =~ /(x86_64|amd64)/i)
elsif (arch =~ /(x86_64|amd64)/i)
return ARCH_X86
end
end