From 2602891506f7f47245e606fe2f2edd0e0b84fa4f Mon Sep 17 00:00:00 2001 From: HD Moore Date: Thu, 22 Feb 2007 07:34:03 +0000 Subject: [PATCH] Update the check method to use the new API, fixes #30 git-svn-id: file:///home/svn/framework3/trunk@4460 4d416f70-5f16-0410-b530-b9f4589650da --- modules/exploits/windows/http/apache_chunked.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/exploits/windows/http/apache_chunked.rb b/modules/exploits/windows/http/apache_chunked.rb index c85cabd241..432e20c67a 100644 --- a/modules/exploits/windows/http/apache_chunked.rb +++ b/modules/exploits/windows/http/apache_chunked.rb @@ -1,5 +1,5 @@ ## -# $Id:$ +# $Id$ ## ## @@ -162,7 +162,7 @@ class Exploits::Windows::Http::ApacheChunkedEncoding < Msf::Exploit::Remote end def check - response = request('uri' => '/') + response = send_request_raw({'uri' => '/'}, 5) if response.nil? print_status("No response to request")