From 84e30cd71ef8e61ec48c0d5924323c58d2cd958f Mon Sep 17 00:00:00 2001 From: HD Moore Date: Sat, 3 Apr 2010 06:11:45 +0000 Subject: [PATCH] Switch from int to string, no reason not to git-svn-id: file:///home/svn/framework3/trunk@8993 4d416f70-5f16-0410-b530-b9f4589650da --- lib/msf/core/handler/reverse_https.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/msf/core/handler/reverse_https.rb b/lib/msf/core/handler/reverse_https.rb index 772c63b39b..d69cb46cd3 100644 --- a/lib/msf/core/handler/reverse_https.rb +++ b/lib/msf/core/handler/reverse_https.rb @@ -39,7 +39,7 @@ module ReverseHttps [ OptString.new('LHOST', [ true, "The local listener hostname" ]), OptPort.new('LPORT', [ true, "The local listener port", 8443 ]), - OptInt.new('TARGETID', [ false, "The ID number of this specific instance", rand(1_000_000)]), + OptString.new('TARGETID', [ false, "The ID number of this specific instance (8 bytes max)", rand(1_000_000)]), ], Msf::Handler::ReverseHttps) end