From 469209a2b3423e29bf0f20190b9a6cea63d94ad8 Mon Sep 17 00:00:00 2001 From: zerosum0x0 Date: Wed, 31 Jan 2018 17:19:09 -0700 Subject: [PATCH] prefer x64 dynamite --- 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 f49629bae0..633b223a06 100644 --- a/lib/msf/core/exploit/smb/client/psexec_ms17_010.rb +++ b/lib/msf/core/exploit/smb/client/psexec_ms17_010.rb @@ -616,8 +616,8 @@ module Exploit::Remote::SMB::Client::Psexec_MS17_010 # do not know target architecture # 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']]['x64']) + attempt_list.push(OS_ARCH_INFO[@ctx['os']]['x86']) end # ================================