From 917282a1f11e5732312fbdbd916370454c8a7b8a Mon Sep 17 00:00:00 2001 From: jvazquez-r7 Date: Fri, 10 Jul 2015 17:49:15 -0500 Subject: [PATCH] Fix ranking --- modules/exploits/multi/vnc/vnc_keyboard_exec.rb | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/exploits/multi/vnc/vnc_keyboard_exec.rb b/modules/exploits/multi/vnc/vnc_keyboard_exec.rb index 6d103d0185..f12c1c2754 100644 --- a/modules/exploits/multi/vnc/vnc_keyboard_exec.rb +++ b/modules/exploits/multi/vnc/vnc_keyboard_exec.rb @@ -8,7 +8,7 @@ require 'rex/proto/rfb' class Metasploit3 < Msf::Exploit::Remote - Rank = ExcellentRanking + Rank = GreatRanking include Msf::Exploit::Remote::Tcp include Msf::Exploit::CmdStager include Msf::Exploit::Powershell @@ -26,10 +26,9 @@ class Metasploit3 < Msf::Exploit::Remote 'Privileged' => false, 'License' => MSF_LICENSE, 'Platform' => %w{ win unix }, - 'Arch' => ARCH_X86, 'Targets' => [ - [ 'VNC Windows / Powershell', { 'Platform' => 'win' } ], + [ 'VNC Windows / Powershell', { 'Arch' => ARCH_X86, 'Platform' => 'win' } ], [ 'VNC Windows / VBScript CMDStager', { 'Platform' => 'win' } ], [ 'VNC Linux / Unix', { 'Arch' => ARCH_CMD, 'Platform' => 'unix' } ] ],