From ec26f01360927cf9935a17f2e483065393578c2c Mon Sep 17 00:00:00 2001 From: zerosum0x0 Date: Wed, 31 Jan 2018 17:12:07 -0700 Subject: [PATCH] fix x64 typo --- lib/msf/core/exploit/smb/client/psexec_ms17_010.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/msf/core/exploit/smb/client/psexec_ms17_010.rb b/lib/msf/core/exploit/smb/client/psexec_ms17_010.rb index e0928bb62d..a3d76cb1cc 100644 --- a/lib/msf/core/exploit/smb/client/psexec_ms17_010.rb +++ b/lib/msf/core/exploit/smb/client/psexec_ms17_010.rb @@ -617,7 +617,7 @@ module Exploit::Remote::SMB::Client::Psexec_MS17_010 # this case is only for Windows 2003 # try offset of 64 bit then 32 bit because no target architecture attempt_list.push(OS_ARCH_INFO[@ctx['os']]['x86']) - attempt_list.push(OS_ARCH_INFO[@ctx['os']]['64']) + attempt_list.push(OS_ARCH_INFO[@ctx['os']]['x64']) end # ================================