Fix possible port conflict

This commit is contained in:
jvazquez-r7
2013-09-18 12:24:36 -05:00
parent dc9246a770
commit 1988085a94
3 changed files with 5 additions and 5 deletions
@@ -77,7 +77,7 @@ class Metasploit3 < Msf::Exploit::Remote
end
def exploit
telnetport = rand(65535)
telnetport = rand(32767) + 32768
print_status("#{rhost}:#{rport} - Telnet port used: #{telnetport}")